web 2.0

How to use PHP & Send Email Add Reply-To Header

How to use PHP & Send Email Add Reply-To Header This the tutorial/example a scripts how to use PHP and send mail/email Add Reply-To Header from php Scirpt.

ShotDev Focus:
- PHP & Send Mail (Add Reply-To Header)

Example

php_sendmail_reply.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_reply.php

Screenshot

PHP Send Mail (Add Reply-To Header)

PHP Send Mail (Add Reply-To Header)

PHP Send Mail (Add Reply-To Header)
.
.
.

Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.