| 
<?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 php mail function
 */
 $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);
 
 $params = array("url_template"=>"http:// where your_mail_form is");
 
 $sendmail->bodyFromUrl ($params);
 
 $sendmail->Send();//Send mail
 
 
 |