Hi ihr,
ich habe folgende Code geschrieben und habe eine Meldung "Your email was sended succesfully to mymail" bekommen und habe gecheckt, ob die gesendete Email angekommen, aber sie ist nicht angekommen :(. Weißt eine von euch , wie ich eine Email in PHP programmiern soll.
<?php
$to="mymail@yahoo.com";
$from="mymail@yahoo.com";
$subject="Email von PHP";
$message=$_POST['emailcontent'];
$emailheaders = 'From: ' . $from . "\n";
$emailheaders .= 'Return-Path: ' . $from . "\n";
$emailheaders .= 'MIME-Version: 1.0' ."\n";
$emailheaders .= 'Content-type: text/html; charset=iso-8859-1' . "\n";
$emailsended=mail($to, $subject, $message, $emailheaders);
?>
<? if( $emailsended===TRUE ){
echo '<font face="Arial" size="4" color="#339933">Your email was sended succesfully to '.$to.'</font>
';
}else{ echo '<font face="Arial" size="4" color="#FF0000">Your email couldnt be sended to '.$to.'</a></font>
';
}
=========
Ich bedanke mich im Voraus
Thocon
?>