? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/questionnaire/include/class_mail/
File Upload :
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";
?>

T1KUS90T
  root-grov@210.1.60.28:~$