How to use PHP & Send Email Set High Priority This the tutorial/example a scripts how to use PHP and send mail/email Set High Priority from php Scirpt.
ShotDev Focus:
- PHP & Send Mail (Set High Priority)
Example
php_sendmail_priority.php
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <? $strTo = "member@shotdev.com"; $strSubject = "Test sending mail."; $strHeader = "From: Mr.Weerachai Nukitram<webmaster@shotdev.com>\nReply-To: shotdev@hotmail.com"; $strMessage = "My Body & My Description"; $flgSend = mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No show error // if($flgSend) { echo "Mail send completed."; } else { echo "Cannot send mail."; } ?> </body> </html>
Create a php file and save to path root-path/myphp/
Run
http://localhost/myphp/php_sendmail_priority.php
Screenshot