Just to let you know that the (beta) release of EmailNotify2 is available. FYI: Don't download this unless you can handle a few random bugs cropping up here and there.
EmailNotify2 is located at: http://bama.ua.edu/~whitt013
------------------
------------------David Whittaker----------------------------http://www.uabcm.com----------------------------http://bama.ua.edu/~whitt013
Even though we have it setup to send html, it shows up in our inbox as a text based html coded page.
On a seperate note, don't know if anybody would be willing to tackle this, but we use phpbb forums http://www.phpbb.com/ and would like to integrate the usernames, passwords and email address for usernames within the calendar script.
We've seen coding already on how to do this, but we do not have the time nor the man power to do a plugin for the calendar script.
As far as the html emails go, what mail client are you using? Is it capable of reading mail in html? It looks fine to me in Outlook, but I haven't looked in many other browsers.
The phpbb thing shouldn't be too hard to work out. There's not that much code required to authenticate a user. (I've already done a relatively simple plugin that authenticates a user through htaccess). I'd just have to get access to a php capable web server, and that costs money. Something I have absolutely none of for the next 2 weeks. If I get brave enough to try to install php on my home machine (is there a windows version?), then I'll give it a look. Otherwise, remind me again in a few weeks (When I change all my links back to csworkbench.com).
------------------David Whittaker http://www.uabcm.com http://bama.ua.edu/~whitt013
thanks
One common error: You must change the $from variable at the top of every template in the templates/default folder. If you don't, your smtp server will look at that fake address, see that it doesn't resolve, think you are a cracker/spammer, and return an error without sending the message at all.
Let me know if that helps.
I've configured everything as per the instructions and I'm getting this error message:
error running custom function 'before_commands'. The error is: [Can't locate Net/SMTP.pm in @INC (@INC contains: /Library/WebServer/CGI-Executables/calendarscript/plugins/EmailNotify2/ /Library/WebServer/CGI-Executables/calendarscript/plugins/EmailNotify2/ /Library/WebServer/CGI-Executables/calendarscript/plugins /Library/WebServer/CGI-Executables/calendarscript/lib /System/Library/Perl/darwin /System/Library/Perl /Library/Perl/darwin /Library/Perl /Library/Perl /Network/Library/Perl/darwin /Network/Library/Perl /Network/Library/Perl .) at /Library/WebServer/CGI-Executables/calendarscript/plugins/EmailNotify2//Email.pm line 108. BEGIN failed--compilation aborted at /Library/WebServer/CGI-Executables/calendarscript/plugins/EmailNotify2//Email.pm line 108. Compilation failed in require at /Library/WebServer/CGI-Executables/calendarscript/plugins/EmailNotify2//EmailUtil.inc line 73. ]Configuration Saved
Does this mean anything to you? I would appreciate any help.
Jason
This error means that the Perl module, Net::SMTP, is not installed. Your system administrator will have to install it in order to get the plugin working with SMTP. Optionally, you can use sendmail. The default command line may or may not work on your system though. This option can be chosen under the Administrative setup page.
Error running custom function 'before_commands'. The error is: [Undefined subroutine &main::getRecurrenceTimes called at /home/waynet/www/cgi-bin/calendarscript/plugins/EmailNotify2//EmailUtil.inc line 324, line 647. ]
Any ideas how I fix this?
I have the same message after installing EmailNotify2.Did you figure it out?
Regards,Age
* I have the same message after installing EmailNotify2 *
You can try changing line 324 in the EmailUtil.inc file from:
my($occurrences) = &getRecurrenceTimes($schedule);
to
my($occurrences) = &Event::getRecurrenceTimes($schedule);
To see if that solves the problem.
This is untested so use at your own risk. And always make a backup of original files before making changes.
Dan O.