如何在电子邮件中添加html代码? [英] How to add html codes in email?

查看:274
本文介绍了如何在电子邮件中添加html代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经创建了一个自动发送电子邮件的脚本我的邮件包含在以下变量中

I have created a script that sends email automatically! My mail message is included in the following variable

$message

但是当我包含一个html代码或其他东西,它在我的邮件中没有正确显示!

But when i include a html code like or something else it is not shown properly in my mail!

推荐答案

您可以执行以下操作:

$headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$subject = "Subject here";
$message = "email message here";

$sendMail = mail("info@domain.com", "$subject", "$message", "$headers" );   

这篇关于如何在电子邮件中添加html代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆