Email notifications
Solved
Easy!Appointments
-
Hi, testing this app and it works quite well! However email notifications don't seem to be working out of the box. Where does one configure this?
-
As the app is listed as unstable, not everything is working right now.
There is no backend UI yet for email configuration. However email is configured at
/app/code/application/config/email.php
. Because this path is not writable and variables are deactivated, you have to wait until Cloudrons devs add the mail function. Otherwise you could package the app yourself and make the needed changes. I would suggest waiting<?php defined('BASEPATH') or exit('No direct script access allowed'); // Add custom values by settings them to the $config array. // Example: $config['smtp_host'] = 'smtp.gmail.com'; // @link https://codeigniter.com/user_guide/libraries/email.html $config['useragent'] = 'Easy!Appointments'; $config['protocol'] = 'mail'; // or 'smtp' $config['mailtype'] = 'html'; // or 'text' // $config['smtp_host'] = ''; // $config['smtp_user'] = ''; // $config['smtp_pass'] = ''; // $config['smtp_crypto'] = 'ssl'; // or 'tls' // $config['smtp_port'] = 25;
-
Works great now! Thank you!
-