如何使用css來設置將從我的聯繫人表單發送的電子郵件的樣式? 我曾嘗試將CSS內聯樣式添加到代碼,但它只是打破它。 我只想添加一條消息和樣式字體並添加圖像/徽標。將css樣式集成到我的電子郵件中發送給聯繫人表單電子郵件
<?php
include 'config.php';
error_reporting (E_ALL^E_NOTICE);
$post = (!empty($_POST)) ? true : false;
if($post)
{
<html>
<h1>This is a test email<h1>
$name = stripslashes($_POST['name']);
$email = trim($_POST['email']);
$subject = stripslashes($_POST['subject']);
$message = stripslashes($_POST['message']);
$error = '';
</html>
if(!$error)
{
$mail = mail(WEBMASTER_EMAIL, $subject, $message,
"From: ".$name." <".$email.">\r\n"
."Reply-To: ".$email."\r\n"
."X-Mailer: PHP/" . phpversion());
if($mail)
{
echo 'OK';
}
}
}
?>
我想它添加到代碼的第一位,因此風格,從接觸的形式發送的電子郵件。
<span STYLE=\"font-size:20px; color: #333333\"><p>You have recieved a new message enquiry from <a href=\"http://www.google.co.uk\">www.test.co.uk</a> contact form.</p></span>
<p>
<p>
<div STYLE=\"font-size:16px\">
<p><strong>Name:</strong> {$name} </p>
<p><strong>Email Address:</strong> {$email}</strong> </p>
<p><strong>subject:</strong> {$subject} </p>
<p><strong>Message:</strong> {$message} </p>
<h3><p></p></h3>
<div>
<dr />
<span STYLE=\"font-style:italic;font-size:large; color: #333333\">This message was sent from the IP Address: {$ipaddress} on {$date} at {$time}</span></div>
</body>
</html>"
爲什麼-1需要更多信息? – jl5660 2014-09-04 15:53:27
你意識到你正在向PHP注入原始HTML。 – 2014-09-04 15:54:26
即時通訊新的PHP所以沒有即時通訊不知道什麼即時消息 – jl5660 2014-09-04 15:55:32