dragon_0000 Posted September 6, 2011 Report Share Posted September 6, 2011 Ich bin gerade dabei herauszufinden warum ich immer bei anfragen ein "mail delivery failed" bekomme. Der Grund hierfür war das beim xtCore/contact.php bei Absender und Empfänger der Shop eingetragen war - keine Ahnung was sich xtC hierbei schon wieder gedacht hat. So sollte es heißen (_setFrom geändert) if ($send_mail) { $content = ""; foreach ($_POST as $key => $val) { if ($key!='action' && $key!='x' && $key !='y' && $key !='captcha') { $content .= $key . ' :' .html_entity_decode ($val)."\n"; } } $body_html = nl2br($content); $contactMail = new xtMailer('none'); $contactMail->_addReceiver(_STORE_CONTACT_EMAIL,_STORE_NAME); $contactMail->_setSubject(TEXT_CONTACT_SUBJECT); $contactMail->_setContent($content,$body_html); $contactMail->_setFrom($_POST['email_address'], $_POST['firstname'].' '.$_POST['lastname']); $contactMail->_addReplyAddress($_POST['email_address'], $_POST['firstname'].' '.$_POST['lastname']); $contactMail->_sendMail(); $info->_addInfo(SUCCESS_EMAIL_SEND,'success'); }[/PHP] Allerdings bin bei meinen Test mails auf noch etwas feststellen müssen wenn man beim Kontaktformular eine *@gmx.at oder *@gmx.net einträgt bekommt man die Meldung das die Mail gesendet wurde - kommt aber nie an. [b]Kann das mit GMX bitte jemand verifizieren?[/b] P.s. Wenn man *@gmx.atg eingibt geht es Gruß Alois Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.