使用S/MIME(PHP)发送带有附件的电子邮件 [英] Sending an e-mail with an attachment using S/MIME (PHP)

查看:147
本文介绍了使用S/MIME(PHP)发送带有附件的电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试从PHP发送带有附件的加密电子邮件,但是,我的电子邮件只是在电子邮件客户端(在本例中为MS Outlook)中被显示为纯文本. 这是我用来发送电子邮件的代码:

I'm trying to send an encrypted email with an attachment from PHP, however, my e-mail is just diplayed as plain text in the email-client (in this case MS Outlook). This is the code I use to send the email:

$semi_rand = md5(time());   
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";   
$fileatt = "\path\to\attachment";
$headers = array();
$headers['From'] = $email_from;
$headers['Subject'] = $email_subject; 
$headers['MIME-Version'] = "1.0";
$headers['Content-Type'] = "multipart/mixed; boundary=\"{$mime_boundary}\"";    

$file = fopen($fileatt,'rb');   
$data = fread($file,filesize($fileatt));
$data = chunk_split(base64_encode($data));     
fclose($file);   

//message part
$email_message = "This is a multi-part message in MIME format.\n\n" .   
                "--{$mime_boundary}\n" .   
                "Content-Type:text/html; charset=\"UTF-8\"\n" .   
                "Content-Transfer-Encoding: 7bit\n\n
                                     Please find the file attached\n\n";   


//file part
$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";   

$mfile = fopen("msg.txt", "w");
fwrite($mfile, $email_message);
fclose($mfile);


$key = file_get_contents("mailcert.cer");

$encrypt = openssl_pkcs7_encrypt("msg.txt", "enc.txt", $key, $headers);
if($encrypt){
    $data = file_get_contents("enc.txt");
    $parts = explode("\n\n", $data, 2);

    // Send mail
    $ok = mail($email_to, $email_subject, $parts[1], $parts[0]);
}  

该脚本有效,可以发送电子邮件,并且可以在Outlook中对其进行解密,但是结果如下:

The script works, the email is delivered and it's possible to decrypt it in Outlook, however, the result then is something like this:

--==Multipart_Boundary_x6434b5a09f1f49c571a633802cd36772x

Content-Type:text/html; charset="UTF-8"
Content-Transfer-Encoding: 7bit

Please find the file attached

--==Multipart_Boundary_x6434b5a09f1f49c571a633802cd36772x
Content-Type: application/octet-stream;
 name="1327490599scrippie.txt"
Content-Transfer-Encoding: base64

JG9sZElwID0gIjE5NS40Ni4zOS43MyINCiRuZXdJcCA9ICIqIg0KDQojIEdldCBhbGwgb2JqZWN0
cyBhdCBJSVM6Ly9Mb2NhbGhvc3QvVzNTVkMNCiRpaXNPYmplY3RzID0gbmV3LW9iamVjdCBgDQog
ICAgU3lzdGVtLkRpcmVjdG9yeVNlcnZpY2VzLkRpcmVjdG9yeUVudHJ5KCJJSVM6Ly9Mb2NhbGhv
[etc....]

--==Multipart_Boundary_x6434b5a09f1f49c571a633802cd36772x--

还有另一种发送带有附件的加密电子邮件的方法吗?还是有解决此问题的方法?

Is there another way of sending encrypted emails with attachments? Or is there a solution to this problem?

推荐答案

此问题的解决方案是在包含邮件的文件中包含原始邮件的标题.

The solution to this problem is to include the headers for the original message in the file containing the message.

在将文件写入磁盘之前,我添加了以下内容:

I added something like this before writing the file to disk:

foreach($headers as $headerkey => $headerval){
    $email_message = $headerkey . ": " . $headerval . "\r\n" . $email_message;
}

然后,从数组中删除MIME版本和Content-Type头,然后再将其传递给openssl_pkcs7_encrypt()函数.

Then, remove the MIME-version and Content-Type headers from the array before passing it to the openssl_pkcs7_encrypt() function.

这篇关于使用S/MIME(PHP)发送带有附件的电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆