Current Path : C:/AppServ/www/sendmail/ |
Current File : C:/AppServ/www/sendmail/sendmail.php |
<?php $strTo = "wizard_giggs@hotmail.com,navin.chv@gmail.com"; $strSubject = "Test Send Email"; $strHeader = "From: webmaster@thaicreate.com"; $strMessage = "My Body & My Description"; $flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error // if($flgSend) { echo "Email Sending."; } else { echo "Email Can Not Send."; } ?>