I'm having real problems getting email to work from MachForm.
My webhosts say I should use mail.mydomain.co.uk for the SMTP server, port 25
with username & password for an existing email account - all of which I've done and changed to try and get working but I still can't get a mail to send from a form submission... Here's the relevant bits of my config.php file (with personal data removed)...
define('USE_SMTP',true); //set this to 'true' to use SMTP
define('SMTP_HOST','mail.domainremoved.co.uk');
define('SMTP_PORT',25);
define('SMTP_AUTH',true); //if your SMTP require authentification, set this to 'true'
define('SMTP_USERNAME','dave@domainremoved.co.uk');
define('SMTP_PASSWORD','password_goes_here');
define('SMTP_SECURE',false); //set this to 'true' if your server is using secure SMTP (TLS/SSL)
If I make a change, do I have to run anything to allow MachForm to use the new settings or is it looking at config.php each time a setting is required?
