Jump to content

[SOLVED] quick sending email question


mattennant

Recommended Posts

I'm trying to sort out sending an email to admin when a user updates their info

 

all is going fine with the following

if ($_POST['mailer'] =='y'){
  $body = 'you have a new message from a user.'  ;
  mail($_POST['email'],   'Message from user' ,  $body,  '[email protected]');

 

but if i try

if ($_POST['mailer'] =='y'){
  $body = 'you have a new message from a user.'  ;
  $from = '[email protected]'  ;
  mail($_POST['email'],   'Message from user' ,  $body,  $from);

 

i receive the mail, but it comes from Apache  rather than [email protected]

 

do i need to looka t my server setting, or am i making some stupid error

 

Thanks

 

Mat

 

Link to comment
https://forums.phpfreaks.com/topic/106387-solved-quick-sending-email-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.