You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on your website you have the following in your documentation:
[...]
=== SMTP Options (when delivery_method = :smtp) ===
server_host - The String hostname of the SMTP server (default: localhost).
server_port - The Integer port of the SMTP server (default: 25).
server_auth - The Boolean of whether or not to use authentication
(default: false).
=== SMTP Auth Options (when server_auth = true) ===
[...]
Hi,
on your website you have the following in your documentation:
So you define
server_auth
as a boolean.Looking into your code in this file:
https://github.com/mojombo/god/blob/master/lib/god/contacts/email.rb#L113
you send the
server_auth
argument to the smtp server:If I set server_auth to
true
, like defined in your documentation I get the errorbecause
true
is not a valid authentication type for smtp.Correct is for example
The text was updated successfully, but these errors were encountered: