/ Published in: PHP
Advance Mail function using PHP Mailer Class
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php require("class.phpmailer.php"); $mail = new PHPMailer(); $mail->IsSMTP(); // send via SMTP $mail->Host = "smtp.domain.com"; // SMTP servers $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Password = "password"; // SMTP password $mail->FromName = "Name"; $mail->IsHTML(true); // send as HTML $mail->Subject = "Here is the subject"; $mail->Body = "This is the <b>HTML body</b>"; $mail->AltBody = "This is the text-only body"; if(!$mail->Send()) { echo "Message was not sent <p>"; echo "Mailer Error: " . $mail->ErrorInfo; exit; } echo "Message has been sent"; ?>
URL: http://www.vpsdiscussions.com/index.php/topic,111.0.html