I have a Rails 4.2.0 application which sends lots of mails, it's a elearning platfrom.
At the moment I have problems with bounces, Lots of the Mails coming back because the Mail-Adresses aren't valid.
One way is to solve the problem manually, starting deleting them from Database. But thats not suitable because there are about 10000 Users registered.
Now my questsion is what is
config.action_mailer.raise_delivery_errors = true
exactly? what does it do? and how do I get response from this?
Does the mail()
method got a return value where I can see If a mail was send or not?
And are there methods or best practices to detect with the actionmailer, if a mail is delivered or not?