php 发送带附件邮件的实现代码
程序员文章站
2022-05-11 15:33:33
...
1,emailclass.php
= "--==================_846811060==_" CMailFile(,,,,,, = "application/octet-stream", = ->subject = ->addr_to = ->smtp_headers = ->write_smtpheaders(->text_body = ->write_body(->text_encoded = ->attach_file(,,,->mime_headers = ->write_mimeheaders(, attach_file(,,, = ->encode_file( () = = "--" . ->mime_boundary . "\n" = . "Content-type: " . . "; name=\"\";\n" = . "Content-Transfer-Encoding: base64\n" = . "Content-disposition: attachment; filename=\"\"\n\n" = . . "\n" = . "--" . ->mime_boundary . "--" . "\n" encode_file( (( = (, "r" = (, ( = ((( = ->smtp_headers . -> = ->text_body . ->(->addr_to,->subject,,.jbxue. write_body( = "--" . ->mime_boundary . "\n" = . "Content-Type: text/plain; charset=\"us-ascii\"\n\n" = . . "\n" write_mimeheaders(, () = = "MIME-version: 1.0\n" = . "Content-type: multipart/mixed; " = . "boundary=\"->mime_boundary\"\n" = . "Content-transfer-encoding: 7BIT\n" = . "X-attachments: ;\n\n" write_smtpheaders( = "From: \n" = . "Reply-To: \n" = . "X-Mailer: PHP3\n" = . "X-Sender: \n" sendfile();
$subject -- 主题
$sendto -- 收信人地址
$replyto -- 回复地址
$message -- 信件内容
$filename -- 附件文件名
$downfilename -- 下載的文件名
$mimetype -- mime类型
?>
('emailclass.php'
= "test send email"
= 'abc@163.com'
= 'cdf@163.com'
= "test send email content"
= 'test.jpg'
= "image/jpeg" = CMailFile(,,,,,,->?>
您可能感兴趣的文章:
php 发送带附件邮件的类
php socket使用smtp发送带附件的邮件
PHPMailer发送带附件邮件的例子
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
上一篇: Yii rules常用验证规则备忘