Aşağıdaki kod doğru bir e-posta gönderiyor, ancak gövde için. Mesajın gövdesinde html göstermem gerekiyor ve bunu yapamam. web örnekler email :(Ben vücutta html ile e-posta göndermek için kodumu nasıl düzeltebilirimPhp mail: html nasıl gönderilir?
göndermez?
Teşekkür bir ton!
<?php
$to = '[email protected]';
$subject = 'I need to show html';
$from ='[email protected]';
$body = '<p style=color:red;>This text should be red</p>';
ini_set("sendmail_from", $from);
$headers = "From: " . $from . "\r\nReply-To: " . $from . "";
$headers .= "Content-type: text/html\r\n";
if (mail($to, $subject, $body, $headers)) {
echo("<p>Sent</p>");
} else {
echo("<p>Error...</p>");
}
?>
+1 soru için ben benzer soru vardı ama çok değil ama benim durumumda gönderme Bulunan (çeşitli açılardan) Konuyu cevaplar onu – Sam