Jump to content

Newbie with Mail Question


ndbuk

Recommended Posts

Hi There,

 

Hope you are all well? Sorry but yet another Newbie here. Im trying to get a script working on PHP5 in Linux. I need to be able to send a mail when an action has been completed.

 

So far i have:

$to = $email;

$subject = "Quota Change";

                $message = "The Quote for: $username has been changed\nYour new Quote is $quota";

$headers = "From: [email protected]\r\nReply-To: [email protected]";

$mail_sent = @mail( $to, $subject, $message, $headers );

echo $mail_sent ? "Mail sent" : "Mail failed";

 

I now need to be able to send it via a remote server for example mail.testdom.com, username 1 password 2

 

Just wonder if somebody could point me in the right direction?

 

Many Thanks

NDB

 

Link to comment
https://forums.phpfreaks.com/topic/208455-newbie-with-mail-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.