nitin

Topic: email address "From" changed to contact@domain.com

I need to change the From Address in the email notification sent to the administrator and employer from "Unknown Sender" to my site email id something like contact@domain.com.

Currently for all the mail sent from the site the From Address is blank i.e "unknown sender".

Please help and do let me know the changes reuired to be done. I've been trying to fix this problem without any success

putypuruty

Re: email address "From" changed to contact@domain.com

Hi.

If SITE_NAME is not empty (in config.php), that should appear as the sender name.
For example, if you have

Code:
define('SITE_NAME', 'jobberBase');

and

Code:
define('NOTIFY_EMAIL','test@test.com');

the receiver should see this in the From field

Code:
jobberBase <test@test.com>

nitin

Re: email address "From" changed to contact@domain.com

putypuruty wrote:

Hi.

If SITE_NAME is not empty (in config.php), that should appear as the sender name.
For example, if you have

Code:
define('SITE_NAME', 'jobberBase');

and

Code:
define('NOTIFY_EMAIL','test@test.com');

the receiver should see this in the From field

Code:
jobberBase <test@test.com>

cool dude..it works....thanks a lot....really helpful