我想向使用我的应用程序注册的用户发送电子邮件。
我正在使用以下代码使用 Web 服务向我的用户发送电子邮件。
我的消息包含:
PARA 1
PARA 2
PARA 3
$message = "WWOW THIS IS PARA 1. THIS IS PARA 2. THIS IS PARA 3"
$this->Mail($email, "Register Success", $message);
function Mail($to, $subject, $message)
{
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: xxxx! <registration@xxxx.com>' . "\r\n";
// Mail it
if(!mail($to, $subject, $message, $headers)) {
throw new Exception('There was a problem trying to send an email.');
}
}
但是我想自定义文本,比如 Verdana 11px 深灰色字体。我怎样才能做到这一点并在 PARA 中形成它们。我的 para 确实包含引号、冒号和逗号