newsletter subscription

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
hfresource
Posts: 5
Joined: Fri 10. Feb 2006, 23:33

newsletter subscription

Post by hfresource »

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]
st3fek
Posts: 17
Joined: Thu 4. Aug 2005, 11:17
Location: Poland, Sosnowiec
Contact:

Post by st3fek »

I think I've solved this problem. Please check it out:

There is a line in newsletter content part (near line 143):

Code: Select all

		$mail->Sender	 	= $phpwcms["admin_email"];
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:

Code: Select all

		$mail->Sender	 	= $phpwcms["SMTP_FROM_EMAIL"];
I don't know phpmailer (I've watched it, but didn't get any concusion), but it should help.
Post Reply