How to remove concrete5 from the email name?
PermalinkWhen I send test emails from my site it keeps referring to concrete5 - <concrete5 no-reply@blah.com>. I want to change this to blah no-reply@blah.com. Is there anyway of customising this to what I want? I've searched through settings but unable to find anything to do it.
Thanks
Barry
Any further assistance you could offer?
Look for the folder 'config', then edit site.php.
Use server control panel or an FTP program or ask your hosing provider to help you.
define('EMAIL_DEFAULT_FROM_ADDRESS', 'myaddress@example.com');
...and add the code into your 'site.php' file, obviously changing the 'myaddress@example.com' to your own preferred email address. This will then override the default concrete5 'from' email address.
The 'config' folder will have to be accessed via FTP or accessing the installation folders and files through CPANEL.
If you are nervous about editing the file just make a copy of the original 'site.php' file so that you can revert back to it if there is a problem.
Hope this helps.
<?php
define('EMAIL_DEFAULT_FROM_ADDRESS', 'myaddress@example.com');
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'etc...');
define('DB_PASSWORD', 'etc...');
define('DB_DATABASE', 'databasename...');
define('BASE_URL', 'http://etc...');
define('DIR_REL', '/etc...');
define('PASSWORD_SALT', 'etc.. etc...');
?><?php
please see this link in the 'How to' section to explain how to change this...
http://www.concrete5.org/documentation/how-tos/editors/set-site-ema...
Hope this helps.
Regards
Luke