CGCalendar EventAdded mailer
Posted: Mon May 16, 2011 4:30 pm
				
				Hey all, this should be simple enough, I'm hoping someone with more skills than me can give it a second or two.
I'm trying to get an e-mail sent to a specific address every time an event is added to the CGCalendar module.
I created a UDT tag (temporarily with no advanced features, to see if I could get an e-mail sent on an event creation), with the following content:
global $gCms;
$cmsmailer =& $gCms->modules['CMSMailer']['object'];
$cmsmailer->AddAddress('specific@mail.com');
$cmsmailer->SetBody('New event');
$cmsmailer->IsHTML(false);
$cmsmailer->SetSubject('New event');
$cmsmailer->Send();
But I don't receive anything. CMSMailer is set up fine (I used the test e-mail function, worked fine). How come I don't get any e-mail?
Once I get that sorted out, I'd like for the e-mail to have the following content:
Event name: {event_name}
Event date: {event start} to {event end}
Event created by: {creator}
But I'm not sure how to grab the content of these variables to insert them in the e-mail. Help!
Thanks!
CGCalendar 1.5.7
CMSMailer 2.0
CMS Made Simple 1.8.2
			I'm trying to get an e-mail sent to a specific address every time an event is added to the CGCalendar module.
I created a UDT tag (temporarily with no advanced features, to see if I could get an e-mail sent on an event creation), with the following content:
global $gCms;
$cmsmailer =& $gCms->modules['CMSMailer']['object'];
$cmsmailer->AddAddress('specific@mail.com');
$cmsmailer->SetBody('New event');
$cmsmailer->IsHTML(false);
$cmsmailer->SetSubject('New event');
$cmsmailer->Send();
But I don't receive anything. CMSMailer is set up fine (I used the test e-mail function, worked fine). How come I don't get any e-mail?
Once I get that sorted out, I'd like for the e-mail to have the following content:
Event name: {event_name}
Event date: {event start} to {event end}
Event created by: {creator}
But I'm not sure how to grab the content of these variables to insert them in the e-mail. Help!
Thanks!
CGCalendar 1.5.7
CMSMailer 2.0
CMS Made Simple 1.8.2