library · inferred from evidence
postmark-rails
A Rails gem for integrating with the Postmark service.
- How to catch and handle Postmark::InvalidMessageError (inactive recipient) in Rails
Rescue the specific Postmark exception class around the deliver call: ```ruby begin postmark_client.deliver_with_template(...) rescue Postmark::InvalidMessageError => error # mark as bounced or take other action end ``` If you need fin