?
Path : /home/admin/public_html/old/questionnaire/include/class_mail/ |
Current File : /home/admin/public_html/old/questionnaire/include/class_mail/test_class_mail.php |
<?php require("class.phpmailer.php"); $mail = new PHPMailer(); ini_set("SMTP","mail.happytokorea.com"); $mail->IsSMTP(); // set mailer to use SMTP $mail->Host = "mail.happytokorea.com"; // specify main and backup server //$mail->SMTPAuth = true; // turn on SMTP authentication //$mail->Username = "jswan"; // SMTP username //$mail->Password = "secret"; // SMTP password $mail->From = "spzone03@hotmail.com"; $mail->FromName = "SPZone"; $mail->AddAddress("info@happykoreamall.com", "pong"); $mail->AddAddress("spzone03@hotmail.com", "siripong"); //$mail->AddAddress("spgeocities@yahoo.com"); // name is optional $mail->AddReplyTo("spzone03@hotmail.com", "Information"); $mail->WordWrap = 50; // set word wrap to 50 characters //$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments //$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name $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"; ?>