1 cat47 Aug 10, 2006 15:08
3 area51 Feb 12, 2007 22:56
I would like to do this to but I can't figure out where to put my email address in the above example.
Can you show me an example of what the code should look like with a different email address?
4 yabba Feb 13, 2007 01:04
¥åßßå wrote:
conf/_advanced.php, you should find a section similar to this (depending on your evo version), just set it to the email addy you want ;)
/**
* Default email address for sending notifications (comments, trackbacks,
* user registrations...).
*
* Set a custom address like this:
* <code>$notify_from = 'b2evolution@your_server.com';</code>
*
* Alternatively you can use this automated address generation (which removes "www." from
* the beginning of $basehost):
* <code>$notify_from = $instance_name.'@'.preg_replace( '/^www\./i', '', $basehost );
*
* @global string Default: $instance_name.'@'.$basehost;
*/
$notify_from = $instance_name.'@'.preg_replace( '/^www\./i', '', $basehost );[/php]¥
The dev team are way ahead of me at providing examples ;)
¥
conf/_advanced.php, you should find a section similar to this (depending on your evo version), just set it to the email addy you want ;)
¥