我正在尝试使用 zend 框架发送带有 zip 文件附件的电子邮件。但我总是把它发送到我电子邮件的垃圾目录。
这是我使用的附加代码。
我不知道是什么问题,请帮助我找到这个。非常感谢。
$mail = new Zend_Mail();
$mail->setType(Zend_Mime::MULTIPART_RELATED);
$mail->setBodyHtml($email_body);
$mail->setFrom('admin@website.com', 'Stephen Nolan');
$mail->addTo($_POST['email'], 'Kamalifestyle Client');
$mail->setSubject('Thanks From Kamalifestyle, See Attachment');
$attachment = $mail->createAttachment(file_get_contents($currentFile));
$attachment->type = 'zip';
$attachment->filename = "completebook.zip";
if ($mail->send()) {
unlink($currentFile);
echo 'Message Sent';
?>
<?php
} else {
echo 'Error Sending ';
}