duanjiu4498 2011-01-27 11:38
浏览 33

php - 带附件的邮件

I have implemented a php mail function for sending mail with attachment, but i am getting mail with 0 kb attachment. The code i am using given below:

<?php
$fileatt = ""; // Path to the file
$fileatt_type = "application/octet-stream"; // File Type
$fileatt_name = ""; // Filename that will be used for the file as the attachment

$email_from = ""; // Who the email is from
$email_subject = ""; // The Subject of the email
$email_txt = ""; // Message that the email has in it

$email_to = ""; // Who the email is too

$headers = "From: ".$email_from;

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

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

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

$email_message .= "This is a multi-part message in MIME format.

" .
"--{$mime_boundary}
" .
"Content-Type:text/html; charset=\"iso-8859-1\"
" .
"Content-Transfer-Encoding: 7bit

" .
$email_message . "

";

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

$email_message .= "--{$mime_boundary}
" .
"Content-Type: {$fileatt_type};
" .
" name=\"{$fileatt_name}\"
" .
//"Content-Disposition: attachment;
" .
//" filename=\"{$fileatt_name}\"
" .
"Content-Transfer-Encoding: base64

" .
$data . "

" .
"--{$mime_boundary}--
";

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

if($ok) {
echo "<font face=verdana size=2>The file was successfully sent!</font>";
} else {
die("Sorry but the email could not be sent. Please go back and try again!");
}
?>

I can't figure out the issue with this code. Please anyone help me!!

  • 写回答

1条回答 默认 最新

  • dscs63759 2011-01-27 11:49
    关注

    Perhaps I'm an idealistic fool, but PHP's mail() function is plagued with problems, and seemingly always has been.

    I tend to recommend that all new projects use a mailer library, such as Swiftmailer, (or similar) because they tend to handle edge cases much better than rolling-your-own, and also they've been more extensively tested against odd things that might get mailed.

    There's a massive resource of PHP libraries available, other than the ones included in PHP itself, and many frameworks also offer Mail classes. It's getting to the point where using frameworks and libraries produces a more rock-solid application, than reinventing many wheels, and rolling one's own to do everything.

    评论

报告相同问题?

悬赏问题

  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致