Hi guys,
Recently upgraded my Uniform plugin to the latest version in master from V2.
Would the following still be a valid way to configure our SMTP email provider. That’s the config we have on our production site (running V2) where it works fine.
On the dev site (sits on the same machine, different directory but running V3) it says cannot send emails. I’d assume it should all still work as before or has something changed in the latest version ?
c::set('uniform.action', array(
'_action' => 'email',
'service' => 'phpmailer',
'service-options' => array(
'host' => 'mail.smtp2go.com',
'port' => 2525,
'security' => 'tls',
'user' => 'blahblahblah',
'password' => 'blahblahblah'
),
'sender' => 'info@someemail.com'
));