Registration E-mail

Permalink
Hi all,

I was wondering if it was possible to change the e-mail address in the "from:" line in the e-mail that is sent to user to validate his/her registration.

Right now when somebody registers, the e-mail they get is an e-mail from my web host that has my host user name followed by a funky host server e-mail. I would like to change it to admin@mysite.com

 
adajad replied on at Permalink Reply
adajad
You can define a default FROM address in your site.php.

Log into your host account and edit the file site.php which can be found in 'public_html/config'. In that file, add the following line of code:
define('EMAIL_DEFAULT_FROM_ADDRESS', 'admin@mysite.com');


You will need to download the file, edit it and upload it again.