End of Support for Joomla 3 - Forum closed
[SOLVED] JP-Brush Fehler beim Mail-Versand mit contact_form
Replied by MotWD on topic JP-Brush Fehler beim Mail-Versand mit contact_form
Posted 4 years 3 months ago #27211
Fehler gefunden und behoben:
in der Datei:
Danke für die Info, wo ich den Code finden konnte.
in der Datei:
folgende Änderungen ausführen und dann wird der Versand korrekt durchgeführt:...\plugins\system\bdthemes_shortcodes\shortcodes\contact_form\shortcode.php
Code:
if ($error != true) {
$mail = JFactory::getMailer();
$mail->addRecipient($email_to);
$mail->addReplyTo($email, $name);
// Folgende Zeile ist falsch. Der Absender muss eine dem Server bekannte E-Mail-Adresse sein und nicht die vom Verfasser des Formulars
//$mail->setSender(array($email, $name));
$mail->setSender($email_to);
$mail->setSubject($sitename . ': ' . $subject);
$mail->isHTML(true);
$mail->setBody($fullmsg);
$sent = $mail->Send();
if ($sent !== true) {
$output[] = $app->enqueueMessage($error . $sent->__toString(), 'warning');
} else {
$output[] = $app->enqueueMessage(JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FORM_SUCCESS'), 'message');
$output[] = $app->redirect(JRoute::_('index.php'));
}
} else {
$output[] = $app->enqueueMessage($error, 'warning');
}
Danke für die Info, wo ich den Code finden konnte.
by MotWD
The following user(s) said Thank You: joomlaplates
Please Log in or Create an account to join the conversation.
Replied by MotWD on topic [SOLVED] JP-Brush Fehler beim Mail-Versand mit contact_form
Posted 4 years 3 months ago #27212
Problem solved.
by MotWD
Please Log in or Create an account to join the conversation.
Moderators: joomlaplates