如何在电子邮件标题中显示图像。我在下面尝试过,它在gmail中没有显示图像。请任何人帮我解决这个问题。提前谢谢。
$to = $_REQUEST[\'userEmail\'];
$firstName = $_REQUEST[\'firstName\'];
$lastName = $_REQUEST[\'lastName\'];
$email = $_REQUEST[\'email\'];
$question = $_POST[\'message\'];
$subject = \'Test Email\';
$message = "<html><head><img src=\'http://192.168.1.157/Shop/wp-content/uploads/2016/07/image_nmae.png\'/></head>"
. "<body><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);