PHP - 表单邮件插入!和行分成长串

时间:2012-01-09 21:11:41

标签: php email mail-form

我在我公司的网站上有一个表格,其中包含姓名,电话号码和评论(以及其他一些内容)。注释框允许您键入最多5000个字符 - 这是一个很大的限制,允许非常详细的客户。有效表格的内容使用php表格邮件作为纯文本电子邮件发送给我们的销售部门。

出于某种原因,如果评论超过大约1000个字符,它们将具有感叹号,换行符,有时插入缩进。注意这仅适用于电子邮件;如果表单中有错误,数据将被插入表单并标记错误,并且注释没有感叹号+换行符。

我发现了一篇关于它的论坛帖子,暗示有大约990个字符的字符限制导致了这个问题。

有谁知道原因?有没有人知道一个相当简单的解决方法呢?

相关的PHP代码:

$to = $email;

$subject = "Website Order Received: $offer";

$contents = "
Order Form Received -\n
Name: $name\n
Company: $company\n
Email: $email\n
Phone: $phone $phoneExt\n
Order Contents:\n" .
($offer == 'web-demo' ? "- I want a live software demonstration.\n" : "") .
($offer == 'pricing' ? "- I'd like pricing information.\n" : "") .
($offer == 'holiday-pricing' ? "- I'd like to sign up before December 31st for the special holiday offer!\n" : "") .
($offer == 'bid-help' ? "- Please give me marketing materials and other assistance for winning bids.\n" : "") .
($offer == 'demo-cd' ? "- Send me the full-version demonstration CD.\n" : "");
if (!empty ($comments)) {
    $comments = str_replace("
", "\n", $comments); // Preserves line breaks in the comments.
    $contents = $contents."\nComments: $comments\n\n";
}
$contents = str_replace("\n", "\r\n", $contents);

mail($to, $subject, $contents);

1 个答案:

答案 0 :(得分:10)

电子邮件行中的字符数有限制:

  

此标准对一行中的字符数有两个限制。每行字符必须不超过998个字符,并且不应超过78个字符,不包括CRLF。 (RFC 2882)

您可以使用PHP函数wordwrap来实现此目的:

$contents = wordwrap($contents);

在任何情况下,这都会提高随脚本发送的电子邮件的可读性,并使其符合标准。