电子邮件标题与<head>
HTML文档(即使该文档是电子邮件)。所以问题不应该是如何在电子邮件标题中显示图像,因为答案是你不能。
其次,HTML文档也是如此。这个<head>
第(1)节<img>
标签当前位于OP中)用于保存有关文档的信息,其中包含的内容将不会显示。
自<img>
中的标记<head>
不会显示位置,问题只是HTML格式错误。要显示<img>
必须在<body>
标记某处。
$to = $_REQUEST[\'userEmail\'];
$firstName = $_REQUEST[\'firstName\'];
$lastName = $_REQUEST[\'lastName\'];
$email = $_REQUEST[\'email\'];
$question = $_POST[\'message\'];
$subject = \'Test Email\';
$message = "<html><head></head><body><img src=\'http://192.168.1.157/Shop/wp-content/uploads/2016/07/image_nmae.png\'/>"
. "<h1>Visitor Information</h1>"
. "<p>Visitor Information: Fist Name: ".$firstName." Last Name: ".$lastName."</p>"
. "<p>Email: ".$email."</p><p>Question: ".$question."</p></body></html>";
$headers = array(\'Content-Type: text/html; charset=UTF-8\');
$mailSend = wp_mail($to, $subject, $message,$headers);