1
メールヘッダーに画像を表示する方法。私は以下を試しました、それはGmailでそれはイメージを表示していません。これを解決するために助けてください。wp_mail()を使用してメールヘッダーに画像を表示する方法
$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);
あなたは自分のコードを試しましたか?それは助けになったのですか? –