在網站上使用表格,我想首先上傳附件並將其發送到任意的電子郵件地址。我試着使用PHPMailer的,但我從來沒有成功地附加文件只是瀏覽它,只有直接:如何用附件發送郵件
$mail->attachment("images/hello.jpg");
有誰知道如何解決這個問題,或任何替代解決方案的PHPMailer?
在網站上使用表格,我想首先上傳附件並將其發送到任意的電子郵件地址。我試着使用PHPMailer的,但我從來沒有成功地附加文件只是瀏覽它,只有直接:如何用附件發送郵件
$mail->attachment("images/hello.jpg");
有誰知道如何解決這個問題,或任何替代解決方案的PHPMailer?
像這樣的服務器處理應該工作:
if ($_FILES['file']['error'] <= 0){ // success, no error
// read in the contents of temporary file
$file_contents = file_get_contents($_FILES['file']['tmp_name']);
// add the contents to phpmailer object, with original filename from upload
$mail->addStringAttachment($file_contents, $_FILES['file']['name']);
}
這裏假設你的表單元素被命名爲file
,如:
<input type="file" name="file" />
這工作,謝謝。我還有一個問題,你知道如何添加一個可以指示上傳級別的進度條,還是一個完整的新級別?那會包括使用AJAX嗎?你有一些鏈接,我可以找到關於它的一些東西嗎? –
這是另一個級別。在PHP 5.4中有一定程度的可能(請參閱http://php.net/manual/en/session.upload-progress.php),但其他解決方案可能效果更好。例如,像https://github.com/Widen/fine-uploader。 – Plenka
對於這個工作,你需要創建上傳表格,請參閱http://www.php.net/manual/en/features.file-upload.post-method.php瞭解更多信息。上傳文件後,它可以附加到郵件中,就像您在示例中所做的一樣。然後文件名將替換爲保存上傳的路徑和文件名。
試試這一個,從http://www.finalwebsites.com/forums/topic/php-e-mail-attachment-script:
<?php
function mail_attachment($filename, $path, $mailto, $from_mail, $from_name, $replyto, $subject, $message) {
$file = $path.$filename;
$file_size = filesize($file);
$handle = fopen($file, "r");
$content = fread($handle, $file_size);
fclose($handle);
$content = chunk_split(base64_encode($content));
$uid = md5(uniqid(time()));
$name = basename($file);
$header = "From: ".$from_name." <".$from_mail.">\r\n";
$header .= "Reply-To: ".$replyto."\r\n";
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-Type: multipart/mixed; boundary=\"".$uid."\"\r\n\r\n";
$header .= "This is a multi-part message in MIME format.\r\n";
$header .= "--".$uid."\r\n";
$header .= "Content-type:text/plain; charset=iso-8859-1\r\n";
$header .= "Content-Transfer-Encoding: 7bit\r\n\r\n";
$header .= $message."\r\n\r\n";
$header .= "--".$uid."\r\n";
$header .= "Content-Type: application/octet-stream; name=\"".$filename."\"\r\n"; // use different content types here
$header .= "Content-Transfer-Encoding: base64\r\n";
$header .= "Content-Disposition: attachment; filename=\"".$filename."\"\r\n\r\n";
$header .= $content."\r\n\r\n";
$header .= "--".$uid."--";
if (mail($mailto, $subject, "", $header)) {
echo "mail send ... OK"; // or use booleans here
} else {
echo "mail send ... ERROR!";
}
}
?>
很好的答案,但是OP使用'PHPMailer'類來抽象你在這裏展示的大部分工作。 –
有沒有可能是你需要使用AddAttachment(),而附件()?
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
您可能還必須確保該文件的路徑與服務器上的腳本相關的正確性。
[swiftmailer](http://www.swiftmailer.org)是一個選擇。但是,即使如此,您仍然希望將文件傳輸到您的PHP腳本中,然後對其進行處理,然後將其附加。 –