We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is just a simple mistake in sample code : in blog.go line 103 ab.Config.Core.Mailer = defaults.LogMailer{}
ab.Config.Core.Mailer = defaults.LogMailer{}
in blog.go line 117 defaults.SetCore(&ab.Config, *flagAPI, false)
defaults.SetCore(&ab.Config, *flagAPI, false)
it overrides the mailer with its default ... i mean if u change line 103 to use your mailer implementation in my case mailgun
ab.Config.Core.Mailer = mailgunmailer
it will be overriden to default mailer that is std.out logger ....
Thanks 👍
The text was updated successfully, but these errors were encountered:
1dac6d0
Thanks for pointing this out. I removed the offending line because it made a very useless mailer. :)
Sorry, something went wrong.
No branches or pull requests
There is just a simple mistake in sample code :
in blog.go line 103
ab.Config.Core.Mailer = defaults.LogMailer{}
in blog.go line 117
defaults.SetCore(&ab.Config, *flagAPI, false)
it overrides the mailer with its default ...
i mean if u change line 103 to use your mailer implementation in my case mailgun
ab.Config.Core.Mailer = mailgunmailer
it will be overriden to default mailer that is std.out logger ....
Thanks 👍
The text was updated successfully, but these errors were encountered: