ThaiPBL.com

PowerBuilder Library Thailand

อีเมล พิมพ์ PDF

HTML e-mail

สวัสดีครับ
อันนี้เขาบอกมาว่าใช้สำหรับส่ง HTML e-mail ครับสำหรับ PB7 ลองทดสอบดูก็แล้วกันนะครับ
string s_message = " Some text <\body>";
string s_subject = "a subject";
...
mMsg.Subject = s_subject + "~nContent-type: text/html~nContent-Transfer-Encoding: 7bit~n~n~n" + s_message + "";
// put recipients into bcc, so the wont see each other being in the same mailing list

mMsg.Subject = s_subject + '~nContent-type: multipart/mixed; boundary="!!##!!" ';
mMsg.NoteText = "--!!##!!~nContent-Type: text/html~nContent-Transfer-Encoding: 7bit" +&
"~nContent-Disposition: inline~n"+&
"~n" + s_message + "~n~n--!!##!!";