ndbuk Posted July 21, 2010 Share Posted July 21, 2010 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 More sharing options...
PFMaBiSmAd Posted July 21, 2010 Share Posted July 21, 2010 You would need to use SMTP Authentication, which the php mail() function does not support. You would need to use one of the 3rd party phpmailer scripts which do support SMTP Authentication. Link to comment https://forums.phpfreaks.com/topic/208455-newbie-with-mail-question/#findComment-1089248 Share on other sites More sharing options...
ndbuk Posted July 21, 2010 Author Share Posted July 21, 2010 Hi There, Thanks for your reply. Would you have any suggestions or links? Cheers NDB Link to comment https://forums.phpfreaks.com/topic/208455-newbie-with-mail-question/#findComment-1089252 Share on other sites More sharing options...
PFMaBiSmAd Posted July 21, 2010 Share Posted July 21, 2010 http://www.google.com/#hl=en&q=php+mailer&aq=f&aqi=&aql=&oq=&gs_rfai=&fp=4b52c26b7e65a19f See the phpmailer or swiftmailer links returned by that search ^^^ Link to comment https://forums.phpfreaks.com/topic/208455-newbie-with-mail-question/#findComment-1089258 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.