Hello,
Is there a possibility that calendar reminder reminds event by sending an e-mail?
Thanks a lot
Hello,
Is there a possibility that calendar reminder reminds event by sending an e-mail?
Thanks a lot
Last edited by duffy; 2008-04-09 at 03:20 PM.
Hi, duffy.
You can do that creating a new ScheduledJobs into modules/Schedulers/_AddJobsHere.php script and create a new action into Activities module which will be called by this scheduled task and trigger reminders.
If you don't know how to do, please contact me.
Cheers
--
André Lopes
Lâmpada Global Services
SugarCRM Silver Partner
USA: +1 908 998-2278
BR: +55 11 3237-3110
www.lampadaglobal.com
email: info@lampadaglobal.com
Lampada Global Services delivers enterprise software and offshore programming services to customers around the world.
Hi Andre,
I have never done this. Could you please give me some hints how to do it? Is it possible to send reminders to every particular meeting/call attendee?
Thanks a lot in advance
Originally Posted by duffy
Hi, duffy.
Are you meaning to send the reminder to the assigned user of the activity?
Do you know php programming?
Cheers
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
Hi Andre,
Yes I mean reminder to assigned user activity.
And I know php programming, I just wanted some guide![]()
Hi, duffy
You have to modify the script modules/Schedulers/_AddJobsHere.php and place this piece of code at the end of file:
This script modules/Emails/RunEmailReminder.php is a normal action, which can be accessed by index.php?modules=Emails&action=RunEmailReminderPHP Code:$job_strings[] = 'runEmailReminder';
function runEmailReminder() {
if (!class_exists('LoggerManager')){
require('log4php/LoggerManager.php');
}
$GLOBALS['log']->debug('Called:runEmailReminder');
if (!class_exists('PearDatabase')){
require('include/database/PearDatabase.php');
}
require_once('include/utils.php');
global $beanList;
global $beanFiles;
require("config.php");
require('include/modules.php');
if(!class_exists('AclController')) {
require('modules/ACL/ACLController.php');
}
require('modules/Emails/RunEmailReminder.php');
return true;
}
And it must contains the logic which search for activities to be reminded and send an email to the assigned user.
Cheers
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
Hi all,
I'm quite surprised that email notification on upcoming activities is not a native feature of SugarCRM !
Would anybody have written some code for the modules/Emails/RunEmailReminder.php action mentioned above? I personnaly don't know how to do it.
Thanks in advance for sharing.
where do I get this runemailreminder.php script? or is it sugar non-opensourcecode?
best
fabian
You need to create such page.
I just added the code to show you how to implement.
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks