PHPMailer kullanmadan phpMail aracılığıyla bir görüntüyü gömmek konusunda herhangi bir bilgi?

1 Cevap php

Ben zaten ne kullanmayı tercih ve mümkünse sadece bir resim eklemek istiyorum. İşte benim kod şimdiye kadar:

$to = $Email;
$subject = "$auth->first_name $auth->last_name left you a comment";
$message =  "$auth->first_name $auth->last_name left you a comment: <br /><br /> <a href='http://www.blah.org/Profile.php?id=" . $prof->id . "'>Click here to view</a>";
$from = "blah<noreply@blah.org>";
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: $from";
mail($to, $subject, $message, $headers);

1 Cevap

Sizin de görüntü için HTML yerleştirin $message.

$message = "Here is my image: <img src='http://www.mysite.com/1.jpg' />";

Bu sunucudan alıcı kutusu en yüklenir, ve olacak gibi mutlak-url ("http://www.mysite ...") kullandığınızdan emin olun.