发送包含文件附件的邮件

Posted

技术标签:

【中文标题】发送包含文件附件的邮件【英文标题】:send mail including file attachment 【发布时间】:2012-12-28 09:08:03 【问题描述】:

正在发送带有文件附件的邮件,但无法打开它。

这是什么问题,请解决。

<?php

    $file_name=$_FILES['Resume']['name'];
    $file_size=$_FILES['Resume']['size'];
    $file_temp=$_FILES['Resume']['tmp_name'];
    
    $to = 'renu_activa@yahoo.co.in';
    $subject = 'Test email with attachment'; 
    $from=$_POST['First'];
    $random_hash = md5(date('r', time()));
    $headers = "From: $from\r\nReply-To: $from";
    $headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
    $data = chunk_split(base64_encode(file_get_contents("$file_temp")));
    ob_start(); 
    ?> 
    --PHP-mixed-<?php echo $random_hash; ?>
    Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>"
    
    --PHP-alt-<?php echo $random_hash; ?>  
    Content-Type: text/plain; charset="iso-8859-1" 
    Content-Transfer-Encoding: 7bit
    
    Hello World!!! 
    This is simple text email message. 
    
    --PHP-alt-<?php echo $random_hash; ?>  
    Content-Type: text/html; charset="iso-8859-1" 
    Content-Transfer-Encoding: 7bit
    
    <h2>Hello World!</h2> 
    <p>This is something with <b>HTML</b> formatting.</p> 
    --PHP-mixed-<?php echo $random_hash; ?>
    Content-Type: $file_type; name=$file_name
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment
    
    <?php echo $data; ?>
    --PHP-mixed-<?php echo $random_hash; ?>-- 
    
    <?php 
    //copy current buffer contents into $message variable and delete current output buffer 
    $message = ob_get_clean(); 
    //send the email 
    $mail_sent = @mail( $to, $subject, $message, $headers );//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed" 
    echo $mail_sent ? "Mail sent" : "Mail failed";
            ?>
    

【问题讨论】:

我建议你使用PHPmailer phpmailer.worxware.com 我强烈推荐the Mail module of the zeta components 发送带有附件的邮件。会让你的生活轻松很多。 @AL-Kateb 你想说什么?我在哪里使用 PHPmailer phpmailer.worxware.com? 我正在使用此代码并且正在发送邮件但文件未打开。 【参考方案1】:

您不会建立自己的 MIME 电子邮件。使用PHPMailer 或Swiftmailer,它们几乎可以为您做所有事情。您可以用大约 5 或 6 行代码替换整个脚本。

最重要的是,它们会为您提供比可悲愚蠢的 mail() 函数更好的错误消息/诊断。

Geekmail PHP 库还可以轻松地向电子邮件添加附件

【讨论】:

请有人帮助我。 阅读文档。有例子。和谷歌的例子【参考方案2】:

什么是“mysql_error”?我认为你 die 语句的正确语法是

die(mysql_error());

die($mysql_error);

【讨论】:

以上是关于发送包含文件附件的邮件的主要内容,如果未能解决你的问题,请参考以下文章

HTML 电子邮件正文是不是可以引用作为附件发送的文件(在同一封电子邮件中)?

OUTLOOK VBA 收到新邮件后自动保存包含特定字符的附件到指定文件夹

Biztalk:包含映射到 CSV 的电子邮件的 XML,作为附件发送

JavaMail 从字符串发送邮件附件 - 编码 UTF-8

如何使用python发送包含正文和附件的邮件

发送包含附件的多部分编码邮件。