Hello,
I want to add "createNewAlert" function to send email inside the module. Could you please let me know the files and coded needed for this ?
Thanks in Advance
Enable email functionality
Re: Enable email functionality
Hi pretheesh.j, welcome on board
Sorry I don't understand your question, can you describe exactly the desired behaviour?
- Which event should send the email
- When
- Who should receive
- Etc
Sorry I don't understand your question, can you describe exactly the desired behaviour?
- Which event should send the email
- When
- Who should receive
- Etc
Re: Enable email functionality
Also, "alert" to me looks a lot like "announcement". The Announcement function is already included in the course menu; creating an announcement already sends an e-mail, provided you configure it under "event manager".
Moving to more appropriate thread
Moving to more appropriate thread
---------------------
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Re: Enable email functionality
I also have the same problem,
I want the LMS to send registration info to outside domains (e.g. [email protected]) if that is the mail a new user entered to register and not internally registered students or users within the system.
I want the LMS to send registration info to outside domains (e.g. [email protected]) if that is the mail a new user entered to register and not internally registered students or users within the system.
Re: Enable email functionality
I also have the same problem,
I want the LMS to send registration info to outside domains (e.g. [email protected]) if that is the mail a new user entered to register and not internally registered students or users within the system.
Where do I configure SMTP and POP information in Forma LMS?
I want the LMS to send registration info to outside domains (e.g. [email protected]) if that is the mail a new user entered to register and not internally registered students or users within the system.
Where do I configure SMTP and POP information in Forma LMS?
Re: Enable email functionality
to send emails, formalms can use
a) the server native sendmail (default setting ) , you must have installed a sendmail programm on the server
b) an external smtp server (with or without) authentication: set the rilevant information in config.php file. you must download edit and upload the file from your webserver
forma does not need to receive emails , so there is no pop3 configuration
Claudio
a) the server native sendmail (default setting ) , you must have installed a sendmail programm on the server
b) an external smtp server (with or without) authentication: set the rilevant information in config.php file. you must download edit and upload the file from your webserver
forma does not need to receive emails , so there is no pop3 configuration
Claudio
Cercate nel forum le riposte prima di chiedere. Check the forum before posting
---------------
Claudio Anelli
Joint Technologies - Sistemi avanzati per l'information technology
http://www.joint-tech.com
---------------
---------------
Claudio Anelli
Joint Technologies - Sistemi avanzati per l'information technology
http://www.joint-tech.com
---------------
Re: Enable email functionality
I setup the forma lms successfully.
However I need some assistance with the configuration settings for exchange email server below:
$cfg['use_smtp'] = 'on';
$cfg['smtp_host'] =''; // Options: hostname;hostname:port;...
$cfg['smtp_port'] ='25'; // Options: '' (default port) , port number
$cfg['smtp_secure'] = 'ssl'; // Options: "", "ssl", "tls"
$cfg['smtp_user'] ='';
$cfg['smtp_pwd'] ='';
I have tried it with yahoo and the email alerts work fine, but it does not work with my Exchange Server settings.
I would be quite grateful for any advice on this.
However I need some assistance with the configuration settings for exchange email server below:
$cfg['use_smtp'] = 'on';
$cfg['smtp_host'] =''; // Options: hostname;hostname:port;...
$cfg['smtp_port'] ='25'; // Options: '' (default port) , port number
$cfg['smtp_secure'] = 'ssl'; // Options: "", "ssl", "tls"
$cfg['smtp_user'] ='';
$cfg['smtp_pwd'] ='';
I have tried it with yahoo and the email alerts work fine, but it does not work with my Exchange Server settings.
I would be quite grateful for any advice on this.
Re: Enable email functionality
He deevman
the exchange server have no special configuration in forma.lms
try this configuration
according with some guide (found googling: php phpmailer exchange smtp ) eg: http://www.serversmtp.com/en/smtp-server-exchange
the correct secure option is TLS
if not working try without secure option
if you want to debug smtp connection with exchange you can enable phpmail output debug . put in the config.php file (smtp section ):
claudio
the exchange server have no special configuration in forma.lms
try this configuration
Code: Select all
$cfg['use_smtp'] = 'on';
$cfg['smtp_host'] ='dns name of your exchange server or IP '; // Options: hostname;hostname:port;...
$cfg['smtp_port'] ='25'; // change with the port number where you published exachenge // Options: '' (default port) , port number
$cfg['smtp_secure'] = 'tls'; // Options: "", "ssl", "tls"
$cfg['smtp_user'] ='exchange user';
$cfg['smtp_pwd'] ='exchange user password';
the correct secure option is TLS
Code: Select all
$cfg['smtp_secure'] = 'tls';
Code: Select all
$cfg['smtp_secure'] = false;
Code: Select all
$cfg['smtp_debug'] = level ; // level = 0 (default) , 1, 2 or 3
Cercate nel forum le riposte prima di chiedere. Check the forum before posting
---------------
Claudio Anelli
Joint Technologies - Sistemi avanzati per l'information technology
http://www.joint-tech.com
---------------
---------------
Claudio Anelli
Joint Technologies - Sistemi avanzati per l'information technology
http://www.joint-tech.com
---------------