Formmailer does not send anymore

Use GitHub to post bug reports and error descriptions for phpwcms. Describe your problem detailed!
Locked
cet
Posts: 25
Joined: Sun 7. Dec 2003, 14:58
Location: Garmisch-Partenkirchen

Formmailer does not send anymore

Post by cet »

Next prob:

Since the last two patches, the formmailer did not send the mail anymore (it worked before).
I checked the sendmail path in class.phpmailer.php (this was my problem in the past time, so there should be a variable in the config.inc.php to prevent others from that prob), it is correct.

Can you give me a hint?

Christian
Es ist unmöglich, Staub aufzuwirbeln, ohne dass einige Leute husten!
Erwin Piscator
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

If you are getting this type of error:
Call to undefined function html_entity_decode()
This is a result of PHP version < 4.3 and can be fixed by changing line 91 in "act_formmailer.php" into:

Code: Select all

$subject = html_despecialchars(trim($_POST["subject"])); 
cet
Posts: 25
Joined: Sun 7. Dec 2003, 14:58
Location: Garmisch-Partenkirchen

Post by cet »

There is no error output, everything seems to be working. I just don't receive a mail.
Es ist unmöglich, Staub aufzuwirbeln, ohne dass einige Leute husten!
Erwin Piscator
Locked