Hi,
I'm having some newsletter problems. I created my subscription and the content newsletter. I tried my form and when i checked my database the email submitted is there but i don't receive any confirmation email.
any help would be appreciated.
Thanks[/quote]
newsletter subscription
I think I've solved this problem. Please check it out:
There is a line in newsletter content part (near line 143):
Well, this isn't correct because not everybody use the same mailbox as admin mailbox. In my case -- I am sending mails through smtp -- there is a two different mail: admin e-mail and smtp e-mail. If they aren't the same -- there won't be a verification mail.
Try to replace code above with this:
I don't know phpmailer (I've watched it, but didn't get any concusion), but it should help.
There is a line in newsletter content part (near line 143):
Code: Select all
$mail->Sender = $phpwcms["admin_email"];
Try to replace code above with this:
Code: Select all
$mail->Sender = $phpwcms["SMTP_FROM_EMAIL"];