|
|
|
php วิธีเว้นบรรทัดของข้อความในการส่งมีเมล์ คือเขียนcodeส่งอีเมล์ครับ แต่ว่าข้อความในอีเมล์ มันติดกันเ |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = "[email protected]";
$strSubject = "Test Send Email";
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: Mr.Weerachai Nukitram<[email protected]>\nReply-To: [email protected]";
$strVar = "My Message";
$strMessage = "
<h1>My Message</h1><br>
<table width='285' border='1'>
<tr>
<td><div align='center'><strong>My Message </strong></div></td>
<td><div align='center'><font color='red'>My Message</font></div></td>
<td><div align='center'><font size='2'>My Message</font></div></td>
</tr>
<tr>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
</tr>
<tr>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
</tr>
</table>";
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>
|
|
|
|
|
Date :
2009-04-08 09:41:43 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณวินช่างไว้จิงๆ
อิอิ
ตอบช้าไปนะเนีย
|
|
|
|
|
Date :
2009-04-08 09:43:26 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้วิธีนี้ครับ เพิ่ม \r\n เข้าไปตรงที่ต้องการเว้นบรรทัดครับ
Code (PHP)
<?php
$strSubject = "พนักงานขออนุญาตออกนอกโรงงาน";
$strHeader = "พนักงานขออนุญาตออกนอกโรงงาน ";
$strMessage = "1\r\n 2\r\n 3\r\n";
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
?>
แต่ถ้าต้องการส่งข้อมูลแบบสวยงามมีรูปแบบตายตัวใช้วิธีของคุณ MR.WIN เว็บมาสเตอร์ของเราดีกว่าครับ
เพราะจะสามารถจัดรูปแบบได้สวยกว่าครับ
|
|
|
|
|
Date :
2009-04-08 10:41:06 |
By :
zepherus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ
|
|
|
|
|
Date :
2009-08-31 13:48:52 |
By :
4810123324056 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2010-11-13 17:38:53 |
By :
54564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thank You
|
|
|
|
|
Date :
2011-07-21 15:38:25 |
By :
หหหห |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|