Advertisement
Advertisement
| 03.01.2008 at 02:59PM PST, ID: 23206765 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: |
<?php
require("PHPMailer/class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.secureserver.net"; // SMTP server
$mail->From = "xbz@excite.com";
$mail->AddAddress($email,'test@mydomain.com');
$mail->Subject = "first mail";
$mail->Body = "hi ! \n\n this is my first PHPMailer email !";
$mail->WordWrap = 50;
if(!$mail->Send())
{
echo "Message was not sent";
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message has been sent";
}
?>
|