method
deliver_later
v6.1.7.7 -
Show latest stable
-
0 notes -
Class: MessageDelivery
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (38)
- 6.0.0 (0)
- 6.1.3.1 (16)
- 6.1.7.7 (0)
- 7.0.0 (1)
- 7.1.3.2 (17)
- 7.1.3.4 (0)
- What's this?
deliver_later(options = {})
public
Enqueues the email to be delivered through Active Job. When the job runs it will send the email using deliver_now.
Notifier.welcome(User.first).deliver_later Notifier.welcome(User.first).deliver_later(wait: 1.hour) Notifier.welcome(User.first).deliver_later(wait_until: 10.hours.from_now) Notifier.welcome(User.first).deliver_later(priority: 10)
-
:wait - Enqueue the email to be delivered with a delay.
-
:wait_until - Enqueue the email to be delivered at (after) a specific date / time.
-
:queue - Enqueue the email on the specified queue.
-
:priority - Enqueues the email with the specified priority
By default, the email will be enqueued using ActionMailer::DeliveryJob. Each ActionMailer::Base class can specify the job to use by setting the class variable delivery_job.
class AccountRegistrationMailer < ApplicationMailer self.delivery_job = RegistrationDeliveryJob end