Page 1 of 1

Mail Funktion konnte nicht initialisiert werden. (Formular)

Posted: Fri 23. Mar 2007, 18:15
by purg
hallo,

ich schaffe mich gerade an einem Formular und bekomme es nicht hin, dass man Dieses versenden kann (mail an mich).

Verwende ich:

$phpwcms['SMTP_MAILER'] = 'sendmail'; // default phpMailer: smtp, mail (default), sendmail

bekomme ich den Versand der Mail entsprechend meiner Texteingabe bestätigt aber, die Mail kommt bei mir (eingetragene Empfängermail) nicht an.
----------------------
verwende ich:

$phpwcms['SMTP_MAILER'] = 'mail'; // default phpMailer: smtp, mail (default), sendmail

kommt die Meldung,

(Mail Funktion konnte nicht initialisiert werden.) bzw.
(Konnte folgenden Befehl nicht ausführen: /usr/sbin/sendmail)

---------------------
verwende ich:

Code: Select all

$phpwcms['SMTP_MAILER']       = '[color=red]smtp[/color]'; // default phpMailer: smtp, mail (default), sendmail
funktioniert es auch nicht.
-----------------------

Hat vielleicht jemand einen Tipp wo ich suchen muss

Grüße, Purg

Posted: Fri 23. Mar 2007, 19:04
by isp-master
Hi,

was für ein Server wird verwendet?

Es könnte sein, dass der Server für den Mail-Versand nicht ordnungsgemäß konfiguriert wurde.

Sprech das mal mit Deinem Provider ab.

Viele Grüße aus dem Norden
Daniel

Posted: Fri 23. Mar 2007, 20:06
by purg
danke,

hatte sowas schon befürchtet - ich bin bei WebhostOne -die haben ein super service - da werde ich gleich mal vorsprechen (mailen) - Gruß und Dank, Purg

Posted: Fri 23. Mar 2007, 21:12
by flip-flop
.......ich bin bei WebhostOne......

Code: Select all

$phpwcms['SMTP_FROM_EMAIL']   = 'name@example.com'; // reply/from email address
$phpwcms['SMTP_FROM_NAME']    = 'phpwcms webmaster'; // reply/from name
$phpwcms['SMTP_HOST']         = 'localhost'; // SMTP server (host/IP)
$phpwcms['SMTP_PORT']         = 25; // SMTP-Server port (default 25)
$phpwcms['SMTP_MAILER']       = 'smtp'; // default phpMailer: smtp, mail (default), sendmail
$phpwcms['SMTP_AUTH']         = 1; // sets SMTP_AUTH to ON/OFF
$phpwcms['SMTP_USER']         = 'waXXXXYY'; // default SMTP login (user) name
$phpwcms['SMTP_PASS']         = 'ZZZZSSSS'; // default SMTP password
Sollte dort funktionieren.

Knut

Posted: Fri 23. Mar 2007, 23:16
by purg
Danke Knut,

so tut´s.

Gruß, Purg