I have installed
SMTP Module beta4
PHPMailer 2.3
latest release of WEBFORM

I can send all mails also with WEBFORM... BUT I receive a BLANK PAGE with

-> Invalid address: "NAME FROM" <- NAME FROM is text filled

So I tried to make a PHPMailer downgrade ...but I get equal problem.

Can you help me?

CommentFileSizeAuthor
#2 smtp_639488_2.patch972 byteskoyama

Comments

jscm’s picture

I applied a solution.

I have done a phpmailer downgrade to version 2.2.1.
Now all work really good.

koyama’s picture

Version: 6.x-1.0-beta4 » 6.x-1.x-dev
Status: Active » Needs review
StatusFileSize
new972 bytes

I am having this problem too when Ubercart sends out order notification emails via the SMTP Authentication Support module.

Problem seems to be that SMTP Authentication Support module is assuming that the PHPMailer accepts this syntax:

$mail->AddReplyTo('"John Smith" <john@example.com>');

when it really expects this syntax:

$mail->AddReplyTo('john@example.com', 'John Smith');

Attaching patch which seems to fix the problem.

Environment:

  • Drupal 6.14
  • SMTP Authentication Support 6.x-1.x-dev (2009-Nov-13)
  • PHPMailer 5.1
franz’s picture

Title: Real trouble with SMTP Module + PHPMailer + Webform » Wrong syntax when using AddReplyToo phpmailer method.
Status: Needs review » Fixed

Commited on dev, thanks!

franz’s picture

Title: Wrong syntax when using AddReplyToo phpmailer method. » Wrong syntax when using AddReplyTo phpmailer method.

ops..

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

alokicreon’s picture

This is very much useful!......

(smtp_639488_2.patch 972 bytes)

Thanks.... working fine.

Martin.Schwenke’s picture

I was having this problem in combination with the print module and came up with an almost identical solution to the one in comment #2. Are we likely to see a release that includes this fix? Or is using the dev version recommended?