|
|
|
ส่ง mail attach file แต่อ่านไฟล์ไม่ได้ คือเขียนโค้ดส่งเมล์แนบไฟล์มันส่งได้ ตอนส่งก็ทำการเข้ารหัสด้วย base64 |
|
|
|
|
|
|
|
ผมก็ดูตัวอย่างจากตรงนั้นแหละมันส่งได้ครับ แต่ปัญหามันต่อจากนั้นครับเวลาเราเปิดดูไฟล์
|
|
|
|
|
Date :
2009-12-23 13:00:42 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เจอปัญหานี้เหมือนกันคะ ส่ง ได้ แต่เปิดไฟล์ไม่ได้
|
|
|
|
|
Date :
2009-12-23 19:40:28 |
By :
puiiz_zz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบเลย เดี๋ยวลองดูอีกรอบถ้าได้เดี๋ยวมาโพสไว้
โพสเองตอบเอง ถือโอกาสปั้มกระทู้ซะเลย อิๆ
|
|
|
|
|
Date :
2009-12-23 22:28:10 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมลองทดสอบแล้วก็ปกติดีน่ะครับ
|
|
|
|
|
Date :
2009-12-28 06:49:49 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
https://www.thaicreate.com/asp/iis-smtp-virtual-server.html ในตัวอย่างนี้ file ที่ส่งไปเป็น 0 byte อะคะ และ ลองเอาตัวเองมาลองทำ มี error ตรง header ด้วย และ file ที่แนบไปก็เป็น 0 byte ด้วย กรุณา ช่วยด้วยนะคะ ขอบคุณคะ
|
|
|
|
|
Date :
2010-03-31 10:21:56 |
By :
ping |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นเหมือนกันเลยครับส่งไปเป็น 0byte วอนผู้รู้ช่วยหน่อยนะครับ
|
|
|
|
|
Date :
2010-07-09 10:11:48 |
By :
krailerk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอานี่ไปลองนะครับแต่ตัวนี้ไม่ได้ Attach file นะครับแต่เป็นการใส่ภาพลงไปในอีเมล์เลย แบบว่าเวลาเปิดเมล์ภาพจะแสดงทันที เดี๋ยวผมลองทำตัว Att file ก่อน เดี๋ยวจะเอามาแป๊ะไว้
Code (PHP)
$to = ""; // recipients
$subject = "Test for Embedded Image & Attachement";
$sep = sha1(date('r', time()));// Create a boundary string. It needs to be unique
// Add in our content boundary, and mime type specification:
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: multipart/related; boundary=\"PHP-related-{$sep}\"; type=\"multipart/alternative\"\r\n";
// additional headers
$headers .= "To: You < email address > \r\n";
$headers .= "From: Me < email address > \r\n";
$inline = chunk_split(base64_encode(file_get_contents('services.gif')));
$body =<<<EOBODY
--PHP-related-{$sep}
Content-Type: multipart/alternative; boundary="PHP-alt-{$sep}"
--PHP-alt-{$sep}
Content-Type: text/plain;charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
This text in text plain mode.
--PHP-alt-{$sep}
Content-Type: text/html;charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3DUTF-8" http-equiv=3DContent-Type>
<META name=3DGENERATOR content=3D"MSHTML 8.00.6001.18854">
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT size=2 face=3DArial color=3Dred>this text in text html mode</FONT></DIV><BR>
<IMG src=3D"cid:$sep">
</BODY>
</HTML>
--PHP-alt-{$sep}
--PHP-related-{$sep}
Content-Type: image/gif;name="services.gif"
Content-Transfer-Encoding: base64
Content-ID: <$sep>
{$inline}
--PHP-related-{$sep}
EOBODY;
// Finally, send the email
mail($to, $subject, $body, $headers);
|
|
|
|
|
Date :
2010-07-09 16:22:16 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้เป็น attach file นะครับลองแกะโค้ดเอาเองนะไม่อธิบาย ขี้เกียจ
อันนี้สามารถใช้กับ outlook express ได้นะครับ รวมทั้งตัวอื่นๆด้วย
Code (PHP)
<?php
$to = "email-address"; // recipients
$subject = "Test for Embedded Image & Attachement";
$sep = sha1(date('r', time()));// Create a boundary string. It needs to be unique
// Add in our content boundary, and mime type specification:
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: multipart/related; boundary=\"PHP-related-{$sep}\"; type=\"multipart/alternative\"\r\n";
// additional headers
$headers .= "To: You <email-address>\r\n";
$headers .= "From: Me <email-address>\r\n";
$inline = chunk_split(base64_encode(file_get_contents('services.gif')));
$body =<<<EOBODY
--PHP-related-{$sep}
Content-Type: multipart/alternative; boundary="PHP-alt-{$sep}"
--PHP-alt-{$sep}
Content-Type: text/plain;charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
This text in text plain mode.
--PHP-alt-{$sep}
Content-Type: text/html;charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3DUTF-8" http-equiv=3DContent-Type>
<META name=3DGENERATOR content=3D"MSHTML 8.00.6001.18854">
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT size=2 face=3DArial color=3Dred>this text in text html mode</FONT></DIV><BR>
</BODY>
</HTML>
--PHP-alt-{$sep}
--PHP-related-{$sep}
Content-Type: image/gif;name="services.gif"
Content-Transfer-Encoding: base64
Content-Disposition: attachment; // ตรงนี้เพิ่มขึ้นมาจากโค้ดข้างบน
Content-ID: <$sep>
{$inline}
--PHP-related-{$sep}
EOBODY;
// Finally, send the email
mail($to, $subject, $body, $headers);
?>
|
|
|
|
|
Date :
2010-07-09 16:31:04 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|