Email Config
Posted: Wed Jun 28, 2017 1:19 pm
Hi,
Im using Windows and IIS for a web server and have configured the server to send emails.
I can successfully send emails using an email test page with the following:
However, emails do not send within forma (I have configured emails to be sent for subscribe/unsubscribe to courses under admin section).
What are the proper config settings to have emails sent within the application considering my setup?
Should I use $cfg['use_smtp'] = 'off'? Is smtp_host needed?
Thanks
Edit: Sending email from newsletter works fine it seems with use_smtp = off. However, no emails are being sent for the settings set in Event Manager.
Im using Windows and IIS for a web server and have configured the server to send emails.
I can successfully send emails using an email test page with the following:
Code: Select all
<?php
if(mail('[email protected]','php test subject','php test message')){
echo('ok');
}
else{
echo('not ok');
}
?>
What are the proper config settings to have emails sent within the application considering my setup?
Should I use $cfg['use_smtp'] = 'off'? Is smtp_host needed?
Thanks
Edit: Sending email from newsletter works fine it seems with use_smtp = off. However, no emails are being sent for the settings set in Event Manager.