01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com PHP Sending Email</title>
04.
</head>
05.
<body>
06.
<?
07.
$strTo
=
$_POST
[
"txtTo"
];
08.
$strSubject
=
$_POST
[
"txtSubject"
];
09.
$strHeader
=
"Content-type: text/html; charset=windows-874\n"
;
10.
$strHeader
.=
"From: "
.
$_POST
[
"txtFormName"
].
"<"
.
$_POST
[
"txtFormEmail"
].
">\nReply-To: "
.
$_POST
[
"txtFormEmail"
].
""
;
11.
$strMessage
=
nl2br
(
$_POST
[
"txtDescription"
]);
12.
$flgSend
= @mail(
$strTo
,
$strSubject
,
$strMessage
,
$strHeader
);
13.
if
(
$flgSend
)
14.
{
15.
echo
"Email Sending."
;
16.
}
17.
else
18.
{
19.
echo
"Email Can Not Send."
;
20.
}
21.
?>
22.
</body>
23.
</html>