-
Notifications
You must be signed in to change notification settings - Fork 938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
certificate verify failed (unable to get local issuer certificate) #1537
Comments
|
@HarshRajIN what config did you use? |
Log-
|
Newer versions of From mail v2.8 you can override this. Try def self.send_using_options(options, environment)
options[:from] = 'no_reply@company.com'
options[:via] = :smtp
options[:via_options] = {
address: smtp_server_address(environment),
port: '25',
< domain: 'company.com'
> domain: 'company.com',
> enable_starttls: false
}
Pony.mail(options)
end NOTE: only use when you don't want to upgrade a non-secure connection. |
Got it. Thanks @eval |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running into SSL issue while sending SMTP mail on version 2.8.0, while it works all fine with 2.7.1.
The text was updated successfully, but these errors were encountered: