Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PHP 和 IIS 之上使用 Drupal CMS。当我发送包含嵌入图像的电子邮件时,图像不会显示在 Outlook 中。
我正在尝试隔离问题。
Drupal 或 Outlook 中没有任何内容可以让我查看带有标题的完整邮件正文。
有没有办法配置 PHP 将电子邮件写入磁盘上的文件夹而不是发送电子邮件?
您可以将其写入文本文件而不是发送,只需要找到它发生的地方:
$folder=dirname(__FILE__)."/emaildir"; $txtfilename=time().'.txt'; $emailstr=$header . "/n" . $message . "/n";
而不是 mailto() 或任何只写入文件的函数
$fh=fopen($txtfilename,"w"); $fwrite($fh,$emailstr); fclose($fh);
这是从我的脑海中写的,你可能想检查错误,但你明白了