even after having read the documentation at http://www.phpwcms-docu.de/email_form.phtml and all the mail-related threads in this forum, I can't get my email form to mail. The redirection works properly but no mail is sent. Neither to the recipient nor to the sender (specified in "email", invoked by "send_copy"). This is my form:
Code: Select all
IT|vorname|1|Vorname: |40,100||300
IT|nachname|1|Nachname: |40,100||300
IT|strasse|0|Straße: |40,100||300
IT|plz_ort|0|PLZ, Ort: |40,100||300
IT|land|0|Land: |40,100|Deutschland|300
IT|email|1|E-Mail: |40,100||300
TA|nachricht|0|Ihre Nachricht: |40,10||300
IH|language|0||10,100|DE|0
IH|redirect|0||10,100|http://www.log-parks.com/index.php?redirect|0
IH|redirect_error|0||10,100|http://www.log-parks.com/index.php?redirect_err|0
IH|send_copy|0||10,100|1|0
Code: Select all
// smtp values
$phpwcms['SMTP_FROM_EMAIL'] = 'mail@log-parks.com'; // reply/from email address
$phpwcms['SMTP_FROM_NAME'] = 'mail@log-parks.com'; // reply/from name
$phpwcms['SMTP_HOST'] = 'localhost'; // SMTP server (host/IP)
$phpwcms['SMTP_PORT'] = 25; // SMTP-Server port (default 25)
$phpwcms['SMTP_MAILER'] = 'mail'; // default phpMailer: smtp, mail (default), sendmail
$phpwcms['SMTP_AUTH'] = 0; // sets SMTP_AUTH to ON/OFF
$phpwcms['SMTP_USER'] = '<myUsername>'; // default SMTP login (user) name
$phpwcms['SMTP_PASS'] = '<myPassword>'; // default SMTP password
Thank you
Harry