Hi,
I am not able to send the mail to any user, from the admin section.
Can you please help me, where to set the mail configuration .i.e smtp server name, port etc.
And one more thing, for 'Classroom' coaching, I think, the user will also be notified by email. Please correct me, if I am wrong.
Thanks
Biplob
how to configure mail setting
-
- Newbie
- Posts: 17
- Joined: Tue May 05, 2015 8:41 am
- Version: forma.lms 1.4
Re: how to configure mail setting
Hi Biplob,
- in the LMS, you have to configure the e-mail sender for the e-mails sent by the platform
- and the e-mail recipient for the helpdesk requests
You find these settings always under Administration>main>configuration>etc...
If the LMS just doesn't send e-mails, then it's your server that needs to be properly configured. I don't know if it's a WIN or Linux server.
Please use the "search" button on this forum to look for threads where this kind of topics are handled, for example "e-mail setting", or "SMTP" or "phpmailer", or google how to configure a server to allow an application to send e-mail.
All notifications are handled through administration>main>configuration>event manager. Please refer to that to know what events can be configured as "used" and what are not in use.
- in the LMS, you have to configure the e-mail sender for the e-mails sent by the platform
- and the e-mail recipient for the helpdesk requests
You find these settings always under Administration>main>configuration>etc...
If the LMS just doesn't send e-mails, then it's your server that needs to be properly configured. I don't know if it's a WIN or Linux server.
Please use the "search" button on this forum to look for threads where this kind of topics are handled, for example "e-mail setting", or "SMTP" or "phpmailer", or google how to configure a server to allow an application to send e-mail.
All notifications are handled through administration>main>configuration>event manager. Please refer to that to know what events can be configured as "used" and what are not in use.
---------------------
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: how to configure mail setting
Hi biblop
you can configure smtp server and related paramenter for forma. in the configuration.php file
you must fill in the foloowing paramters :
with
forma use the general server configuration of php
you can configure smtp server and related paramenter for forma. in the configuration.php file
you must fill in the foloowing paramters :
Code: Select all
/**
* External smtp config
* -------------------------------------------------------------------------
*/
$cfg['use_smtp'] = 'off';
$cfg['smtp_host'] =''; // Options: hostname;hostname:port;...
//$cfg['smtp_port'] =''; // Options: '' (default port) , port number
//$cfg['smtp_secure'] = ''; // Options: "", "ssl", "tls"
$cfg['smtp_user'] ='';
$cfg['smtp_pwd'] ='';
Code: Select all
$cfg['use_smtp'] = 'off';
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
---------------
-
- Newbie
- Posts: 17
- Joined: Tue May 05, 2015 8:41 am
- Version: forma.lms 1.4
Re: how to configure mail setting
Hi anellic,
Thanks for your reply. I have configured this via config.php but stiil, the email function is not working.
Can you please tell me, where is the log file is situated, so that I can check the log file and debug it.
Thanks
Biplob
Thanks for your reply. I have configured this via config.php but stiil, the email function is not working.
Can you please tell me, where is the log file is situated, so that I can check the log file and debug it.
Thanks
Biplob
Re: how to configure mail setting
hi biplob
there are no log fil to track email send process
If in forma you don't see any popup error , the email was accepted by the smtp server.
Check the smtp server log file and the spam folder of the receiver
there are no log fil to track email send process
If in forma you don't see any popup error , the email was accepted by the smtp server.
Check the smtp server log file and the spam folder of the receiver
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: how to configure mail setting
HI biblob,
did you resolve this?
If so how please.
regards ausrob
did you resolve this?
If so how please.
regards ausrob
-
- Newbie
- Posts: 1
- Joined: Wed Mar 16, 2016 4:36 am
- Version: forma.lms 1.4
Re: how to configure mail setting
Even I'm unable to send emails. Configured from email id and edited config.php in root directory as below:
$cfg['use_smtp'] = 'on';
$cfg['smtp_host'] ='10.x.x.x'; // Options: hostname;hostname:port;...
$cfg['smtp_port'] ='25'; // Options: '' (default port) , port number
//$cfg['smtp_secure'] = ''; // Options: "", "ssl", "tls"
$cfg['smtp_user'] ='';
$cfg['smtp_pwd'] ='';
But the emails are not triggered.
$cfg['use_smtp'] = 'on';
$cfg['smtp_host'] ='10.x.x.x'; // Options: hostname;hostname:port;...
$cfg['smtp_port'] ='25'; // Options: '' (default port) , port number
//$cfg['smtp_secure'] = ''; // Options: "", "ssl", "tls"
$cfg['smtp_user'] ='';
$cfg['smtp_pwd'] ='';
But the emails are not triggered.
Re: how to configure mail setting
- Have you put the correct IP ?
$cfg['smtp_host'] ='10.x.x.x'; // Options: hostname;hostname:port;...
- Are you able to ping the smtp server ?
- The port 25 on smtp server is opened ?
- The server can connect to the port 25 of the smtp server ?
- You did not specify any user / pwd in your config.php
the smtp accept mail from not authenticated user?$cfg['smtp_user'] ='';
$cfg['smtp_pwd'] =''; - Check the smtp log on mail server
- Check receiver spam folder
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
---------------