首页
视频
教程
登录
搜索
登录
搜索
admin
累计撰写
120
篇文章
累计收到
1
条评论
首页
栏目
首页
视频
教程
登录
包含标签 【PHP mail() 函数】 的文章
2024-10-10
PHP mail() 函数
完整的 PHP Mail 参考手册定义和用法mail() 函数允许您从脚本中直接发送电子邮件。如果电子邮件的投递被成功地接受,则返回 TRUE,否则返回 FALSE。语法mail(to,subject,message,headers,parameters)参数描述to必需。规定电子邮件的接收者。subject必需。规定电子邮件的主题。注释:该参数不能包含任何换行字符。message必需。定义要发送的消息。用 LF(\n)将每一行分开。行不应超过70个字符。headers可选。规定额外的报头,比如 From、Cc 和 Bcc。附加标头应该用 CRLF(\r\n)分开。parameters可选。规定 sendmail 程序的额外参数(在 sendmail_path 配置设置中定义)。例如:当 sendmail 和 -f sendmail 的选项一起使用时,sendmail 可用于设置发件人地址。提示和注释注释:您需要谨记,电子邮件的投递被接受,并不意味着电子邮件到达了计划的目的地。实例 1发送一封简单的电子邮件:<?php $txt = "First line of textnSecond line of text"; // Use wordwrap() if lines are longer than 70 characters $txt = wordwrap($txt,70); // Send email mail("somebody@example.com","My subject",$txt); ?> 实例 2发送一封带有额外报头的电子邮件:<?php $to = "somebody@example.com"; $subject = "My subject"; $txt = "Hello world!"; $headers = "From: webmaster@example.com" . "rn" . "CC: somebodyelse@example.com"; mail($to,$subject,$txt,$headers); ?> 实例 3发送一封 HTML 电子邮件:<?php $to = "somebody@example.com, somebodyelse@example.com"; $subject = "HTML email"; $message = " <html> <head> <title>HTML email</title> </head> <body> <p>This email contains HTML Tags!</p> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>John</td> <td>Doe</td> </tr> </table> </body> </html> "; // Always set content-type when sending HTML email $headers = "MIME-版本: 1.0" . "rn"; $headers .= "Content-type:text/html;charset=iso-8859-1" . "rn"; // More headers $headers .= 'From: <webmaster@example.com>' . "rn"; $headers .= 'Cc: myboss@example.com' . "rn"; mail($to,$subject,$message,$headers); ?>
2024年-10月-10日
106 阅读
1 评论
PHP 高级教程