最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php发送邮件函数mail 教程
时间:2022-07-02 10:31:50 编辑:袖梨 来源:一聚教程网
//定义边界线
$boundary = uniqid( "" );
//生成邮件头
$header = "From: $from Content-type: multipart/mixed;
boundary="$boundary" X-Mailer:PHP X-Priority:3";
//获取附件文件的MIME类型
$mimetype = mime_content_type('test.zip')
//获取附件文件的名字
$attach = 'test.zip'
//对附件文件进行编码和切分
$fp = fopen($attach, "r");
$content = fread($fp, filesize($attach));
$content = chunk_split( base64_encode($content) );
//生成邮件主体
$body ="
--$boundary
Content-type: text/plain; charset=iso-8859-1
Content-transfer-encoding: 8bit
$message
--$boundary
Content-Type: $mimeType; name=$filename
Content-Disposition: attachment; filename=$filename
Content-Transfer-Encoding: base64
$content
--$boundary--";
//发送邮件
mail( $to, $subject, $body, $header );
?>
转载请注明:www.111com.net
相关文章
- 米姆米姆哈寻梦探秘第一天气泡在哪里 寻梦探秘第一天气泡具体位置 08-17
- 明末渊虚之羽画面怎么调 画面设置方案推荐 08-17
- 星痕共鸣生活职业怎么选 生活职业推荐攻略 08-17
- 三国志战略版单机版在哪下载-三国志战略版单机版下载地址分享 08-17
- 星痕共鸣哪些职业刷图快 刷图职业选择推荐 08-17
- 银与绯主线15-4怎么过关 主线15-4过关攻略 08-17