Sending E-mail from PHP
Regular PHP mail functions may not be used with our mail servers as we have SMTP authentication enabled. Use the code below with the phpMailer to send e-mails. The username and password will need to be replaced with your e-mail username and password.
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "mail.reliablesite.net"; // specify server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "emaillogin"; // SMTP username
$mail->Password = "emailpassword"; // SMTP password
$mail->From = "fromemail@domain.com";
$mail->FromName = "My Name";
$mail->AddAddress("toemail@domain.com");
$mail->AddReplyTo("fromemail@domain.com", "My Name");
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "Here is the subject";
$mail->Body = "This is the HTML message body <b>in bold!</b>";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>