← all integrations
RB

Ruby on Rails

Live

Frameworks

Drop-in ActionMailer delivery adapter. Active Job retries on transient failures using our exponential-backoff defaults. View-based mailers compile to inline HTML on send.

// what you unlock

  • config.action_mailer.delivery_method = :voltmail
  • Active Job retry policy mirrors the SDK
  • ActionView templates compile inline at deliver time

// recipes

Quick-start patterns.

Configure

config.action_mailer.delivery_method = :voltmail

Send

OrdersMailer.with(order: order).receipt.deliver_later

Wire Ruby on Rails in, ship the same day.