这篇文章主要为大家详细介绍了php 发送邮件的简单示例(包含纯文本格式、html格式、添加附件),具有一定的参考价值,可以用来参考一下。
php发送邮件,包含纯文本格式、html格式和添加附件,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。/ * PHP:发送电子邮件(文本/ HTML /附件)
/**
* 发送邮件,包含纯文本格式、html格式和添加附件
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<?php
//define the receiver of the email
$to = 'youraddress@example.com';
//define the subject of the email
$subject = 'Test email';
//define the message to be sent. Each line should be separated with \n
$message = "Hello World!\n\nThis is my first mail.";
//define the headers we want passed. Note that they are separated with
$headers = "From: webmaster@example.com
Reply-To: webmaster@example.com";
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>
如您所见,发送电子邮件非常容易。 您可以通过将其地址(以逗号分隔)添加到$ to变量或添加cc:或bcc:headers来添加更多接收器。 如果您没有收到测试邮件,您可能错误地安装了PHP,或者可能没有发送电子邮件的权限。
回到顶部
发送HTML电子邮件
下一步是检查如何发送HTML电子邮件。 但是,某些邮件客户端无法理解HTML电子邮件。 因此,最好使用多部分构造发送任何HTML电子邮件,其中一部分包含电子邮件的纯文本版本,另一部分是HTML。 如果您的客户关闭了HTML电子邮件,他们仍会收到一封精美的电子邮件,即使他们没有获得所有HTML标记。 看看这个例子:
<?php
//define the receiver of the email
$to = 'youraddress@example.com';
//define the subject of the email
$subject = 'Test HTML email';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with
$headers = "From: webmaster@example.com
Reply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "
Content-Type: multipart/alternative; boundary=\"PHP-alt-".$random_hash."\"";
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Hello World!!!
This is simple text email message.
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>
--PHP-alt-<?php echo $random_hash; ?>--
<?
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>
在前面的示例中,我们添加了一个额外的Content-type标头:multipart / alternative和标记电子邮件不同区域的边界字符串。 请注意,消息本身的内容类型作为邮件头发送,而消息的各个部分的内容类型嵌入在消息本身中。 这样,邮件客户端可以决定要显示的邮件的哪个部分。
使用附件发送电子邮件
我们将考虑的最后一个变体是带附件的电子邮件。 要发送带附件的电子邮件,我们需要使用multipart / mixed MIME类型,指定混合类型将包含在电子邮件中。 此外,我们希望使用multipart / alternative MIME类型来发送电子邮件的纯文本和HTML版本。 看看这个例子:
<?php
//define the receiver of the email
$to = 'youraddress@example.com';
//define the subject of the email
$subject = 'Test email with attachment';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with
$headers = "From: webmaster@example.com
Reply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "
Content-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
//read the atachment file contents into a string,
//encode it with MIME base64,
//and split it into smaller chunks
$attachment = chunk_split(base64_encode(file_get_contents('attachment.zip')));
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>"
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Hello World!!!
This is simple text email message.
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>
--PHP-alt-<?php echo $random_hash; ?>--
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: application/zip; name="attachment.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment
<?php echo $attachment; ?>
--PHP-mixed-<?php echo $random_hash; ?>--
<?php
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>
/*** 代码来自四海网(www.q1010.com) ***/
如您所见,发送带附件的电子邮件很容易实现。本文来自:http://www.q1010.com/173/476-0.html
注:关于php 发送邮件的简单示例(包含纯文本格式、html格式、添加附件)的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:邮件
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。