【问题标题】:How to send email with attachment using PHP?如何使用 PHP 发送带附件的电子邮件?
【发布时间】:2011-01-02 21:07:40
【问题描述】:

我正在使用以下代码发送带有附件的电子邮件,但正确的文件没有随邮件附上。

$UnidID = $_COOKIE['UniqueID'];
$guid = $_COOKIE['guid'];
$target_path = "userdata/".$UniqueID."/".$iGuid."/Outputs";
$fname = getpathmail($UnidID,$guid);
$target_path = $target_path.$filname;

$fileatt_type = "application/fbf"; // File Type
$fileatt_name = $fname; 
$data = $target_path;
$email_from = "EHPAdmin@fugro.in"; 
$email_subject = "EHP/PPP process";
$email_message = "Processed result for EHP/PPP processing";

$email_to = $_GET['Email'] ; 

$headers = "From: ".$email_from;

$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";

$headers .= "\nMIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";

$email_message .= "This is a multi-part message in MIME format.\n\n" .
"--{$mime_boundary}\n" .
"Content-Type:text/html; charset=\"iso-8859-1\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" .
$email_message .= "\n\n";

$data = chunk_split(base64_encode($data));

$email_message .= "--{$mime_boundary}\n" .
"Content-Type: {$fileatt_type};\n" .
" name=\"{$fileatt_name}\"\n" .
"Content-Transfer-Encoding: base64\n\n" .
$data .= "\n\n" .
"--{$mime_boundary}--\n";

$ok = @mail($email_to, $email_subject, $email_message, $headers);

【问题讨论】:

标签: php email email-attachments


【解决方案1】:

我建议使用一个库来发送电子邮件,因为它将处理所有与标题相关的内容。看看Zend_Mail。发送附件就像

一样简单
$mail = new Zend_Mail();

$at = $mail->createAttachment($myImage);
$at->type        = 'image/gif';
$at->disposition = Zend_Mime::DISPOSITION_INLINE;
$at->encoding    = Zend_Mime::ENCODING_8BIT;
$at->filename    = 'test.gif';

$mail->send();

【讨论】:

  • 是的,使用您的框架提供的邮件程序类。无需重新发明轮子并添加更多需要维护的代码。
【解决方案2】:

您需要将所有多部分消息放入$email_message

$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";

$headers = "From: ".$email_from;
$headers .= "\nMIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";

$email_message .= "This is a multi-part message in MIME format.\n\n" .
"--{$mime_boundary}\n" .
"Content-Type:text/html; charset=\"iso-8859-1\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" .
"--{$mime_boundary}\n" .
"Content-Type: {$fileatt_type};\n" .
" name=\"{$fileatt_name}\"\n" .
"Content-Transfer-Encoding: base64\n\n" .
chunk_split(base64_encode($data)) .
"--{$mime_boundary}--\n";

【讨论】:

    【解决方案3】:

    可能你在代码中错过了这个

     ...
    
     $file = fopen($data,'rb');
     //saves content in $data itself
     $data = fread($file,filesize($data));
     fclose($file); 
    
     ...
    

    应该工作还没有执行我自己。 试试看

    【讨论】:

      【解决方案4】:

      你应该把你的附件文件写成:

      "Content-Disposition: attachment; filename='/path/to/the/file/filename'";
      

      【讨论】:

      • 它说的是 filename 而不是 filepath
      • 属性名称是文件名,但您需要指定文件的完整路径,否则如何知道在哪里获取附件。
      猜你喜欢
      • 2012-01-15
      • 1970-01-01
      • 2013-08-26
      • 1970-01-01
      • 2012-08-02
      • 2012-06-07
      • 2011-03-18
      • 2012-06-15
      相关资源
      最近更新 更多