如何在 php 邮件表单中插入图像?
我有这个代码:
$headers = 'MIME-Version: 1.0' . "\n";
$headers .='Content-Type: text/html; charset="UTF-8"'."\n";
$headers .='From: text@example.fr';
$image = "http://lcda.fr/site/abonnement/img/logo.png";
//ecriture du message
$message .= '<img src=".$image.">';
$message .= '<p><br/>Votre commande a bien été enregistrée sous le numéro/ <span style="color:blue">Your command has been successfully recorded under the number :</span> <b>(ref - '.$_SESSION['refvb'].')</b></p>';
$message .= '<table width="500">';
$message .= '<tr><th colspan="2" align="left">Informations abonnement/<span style="color:blue"> Subscription informations</span> :</th></tr>';
$message .= '<tr><td width="250">Abonnement/<span style="color:blue"> Subscription</span> : </td><td>'.$infoabo['abo'].'</td></tr>';
$message .= '<tr><td>Durée/<span style="color:blue"> Duration</span> : </td><td>'.$infoabo['duree'].' an(s) </td></tr>';
$message .= '<tr><td>Quantité/<span style="color:blue"> Quantity</span> : </td><td>'.$infoabo['quantite'].'</td></tr>';
$message .= '<tr><td>Localisation/<span style="color:blue"> Localisation</span> : </td><td>'.$infoabo['zone'].'</td></tr>';
$message .= '<tr><td>Prix/<span style="color:blue"> Price</span> : </td><td>'.$infoabo['prix'].' €</td></tr>';
$message .= '<tr><td>Commencer l\'abonnement au prochain numéro/<span style="color:blue"> Start the subscription in the next issue</span> : </td><td>'.$startabo.'</td></tr>';
$message .= '</table>';
}
$message .= '<br><p><b>Mode de paiement/<span style="color:blue"> Payment</span> : '.$mode;
$message .= '</p>';
$message .= '';
//envoie du mail
ini_set("sendmail_from",'test@example.fr');
但是图像不加载?有没有其他方法可以做到这一点?(重点是放图片的地方放logo公司)