I'm using version 1.3.3.2 of the Guestbook module on CMS 1.10.1. I'm having problems getting the email notification to work using CMSMailer. The test email in CMSMailer is working as is my contact form using Form Builder, so I know the problem isn't there. I'm not getting any errors when submitting a new Guestbook entry, nor am I receiving an email notification. I have tried setting the content type of the page to "Guestbook" and adding the email address to the parameters there as well as setting it to content and using the following tag:
{cms_module module="Guestbook" number=5 shownow=0 smiley=1 captcha=1 mailnoti=email@address.com dateformat="%m/%d/%Y %H:%M"}
I tried putting the email address in quotes as well which also did not work. Is there something that I am missing or does this need to be reported as a bug?
Guestbook 1.3.3.2 Notifications
-
- Power Poster
- Posts: 496
- Joined: Wed Jan 25, 2006 11:53 am
Re: Guestbook 1.3.3.2 Notifications
Did you use the html mode of your editor. There is no bug because I use it and it is working.
Code: Select all
{cms_module module="Guestbook" captcha='1' number=5 shownow=1 smiley=0 mailnoti=my.emailadres@mydomain.nl dateformat="%d-%m-%Y %H:%M"}
Re: Guestbook 1.3.3.2 Notifications
I tried HTML mode and it didn't make a difference. I just installed this module on another site (also 10.1.1) and am experiencing the same exact problem. Test emails from CMSMailer work fine, emails from the FormBuilder module work fine, but I'm not receiving email notifications of guestbook entries.
Re: Guestbook 1.3.3.2 Notifications
I've got the same problem with guestbook 1.3.3.2 and CMSMS 1.10.3
There's a solution described here: http://dev.cmsmadesimple.org/bug/view/7435
Unfortunately, the mails I receive after applying that solution are without any newlines. It's just one long line.
Is there a way to have the email look as when using the original (faulty) code?
***** EDIT ****
never mind! The solution:
If I change...
to...
it's okay again 
*** END EDIT ***
cheers
René
There's a solution described here: http://dev.cmsmadesimple.org/bug/view/7435
Unfortunately, the mails I receive after applying that solution are without any newlines. It's just one long line.
Is there a way to have the email look as when using the original (faulty) code?
***** EDIT ****
never mind! The solution:
If I change...
Code: Select all
$cmsmailer->IsHTML(true);
Code: Select all
$cmsmailer->IsHTML(false);

*** END EDIT ***
cheers
René