我正在使用
PHP mail()函数发送带附件的邮件.
因此,PHP源内容是一个边界,用于定义附件的开始和结束位置.
因此,PHP源内容是一个边界,用于定义附件的开始和结束位置.
所以问题是:是否有任何用于创建此MIME边界的标尺(例如,只允许使用字母和numbres)
我仍然知道这个问题 – > What rules apply to MIME boundary?
是否有必要从HASH创建边界?
因为以下也有效:
$headers .= "Content-Type: multipart/related; boundary=\"abc\""; [...] $msg .="--abc\n"; [...] $msg .= "--abc--\n\n";
有没有理由,为什么MIME边界应该是唯一值?
..i没有在互联网上找到任何信息.
谢谢!
没有什么说边界标记必须是哈希,但它们必须是唯一的.想想如果您插入的实际电子邮件文本自然包含单词–abc–某些地方会发生什么.
原文链接:https://www.f2er.com/php/134172.html您的电子邮件看起来像这样:
--abc-- <--actual boundary This is my email. There are many like it,but this one is mine. Now for some reason I'm going to put in a line that shouldn't be there --abc-- <--part of the email There it was. Did you see it? No,you didn't,because the mail client saw a boundary line and sliced it out. Because of this extra boundary,now the email has 2 sections,instead of 1. --abc-- <--actual boundary