Welcome to mirror list, hosted at ThFree Co, Russian Federation.

railtie.rb « microsoft_graph_mailer « lib « microsoft_graph_mailer « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 607d68cc454a37f0ce3ef169f0b05f3924df9d1e (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require_relative "delivery"

module MicrosoftGraphMailer
  class Railtie < Rails::Railtie
    ActiveSupport.on_load(:action_mailer) do
      add_delivery_method :microsoft_graph, MicrosoftGraphMailer::Delivery
    end
  end
end