<?php
header("Content-Type: text/html; charset=utf-8");
error_reporting(E_ALL ^ E_NOTICE);
ini_set('display_errors', On);
include_once 'class.sendmail.php';
$sendmail = new SendMail();
// Send mail using smtp
$sendmail->UseSMTPServer = true; //If you use smtp sert set true, or local php mail function set false
$sendmail->SMTPServer = "SMTP SERVER";
$sendmail->SMTPPort = "SMTP PORT";
$sendmail->SMTPAuthUser = "SMTP AUTH ID";
$sendmail->SMTPAuthPasswd = "SMTP AUTH PASSWORD";
$sendmail->charset = 'utf-8';//ecu-kr :korean, iso-2022-jp : japaneses
$sendmail->Subject ("String Subject");
$sendmail->From ("Yourname<Account@Domain>");
$sendmail->To (preg_split("/[;,]+/", "Account@Domain")); //maill addresses will be split ";" or ","
$sendmail->Priority (3);
$sendmail->Body ("String Mail Body");
$sendmail->Send();//Send mail
|