Has anyone had luck using the gmail smtp server to hook up with machform?
if so what settings are you using?
Started 2 years ago by barbz | 2 posts |
Has anyone had luck using the gmail smtp server to hook up with machform?
if so what settings are you using?
Gmail should be like this:
define('USE_SMTP',true);
define('SMTP_HOST','smtp.gmail.com');
define('SMTP_PORT',465);
define('SMTP_AUTH',true);
define('SMTP_USERNAME','username@example.com');
define('SMTP_PASSWORD','yourpassword');
Also, make sure that your PHP has OpenSSL extension enabled, as this is needed to be able connecting to Gmail.
MachForm Founder
You must log in to post.