<?php
spl_autoload("loadsmtp");
$ishtml=true;
$reply_to="[email protected]";
$reply_name="Gourab Singha";
$from_name="Gourab Singha";
$subject="This Is Subject";
$resipent_address="[email protected]";
$htmlcontent="<b>This Is test Message</b>";
send_mail();
?>
|