Sha256: 671d62cf4fc06ec7d18e2f79fa699608570215b6a1a7c5cff670f5a113ca627f
Contents?: true
Size: 1.7 KB
Versions: 10
Compression:
Stored size: 1.7 KB
Contents
# frozen_string_literal: true require "renalware/letters" module Renalware module Letters module Delivery # This is a utility class that a host app might want to use to send an approved letter # to the patient's practice. class EmailLetterToPractice pattr_initialize [:letter!] delegate :email_letter_to_practice?, :gp_recipient, to: :policy def self.call(letter) new(letter: letter).call end # Returns # true: we have sent an email to the patient's practice # false: the patient does not have a practice or the practice has no email address def call return false unless email_letter_to_practice? email_letter_to_the_patients_practice true end private # Note we are already in a tx here from the letterlistener, so for safety we call # call #deliver_later and not #deliver; its possible we could get a # LetterIsNotApprovedOrCompletedError error in the mailer we and we don't want that to # roll back the txn. We could possibly use an async Listener and remove the # deliver_later here. def email_letter_to_the_patients_practice Letter.transaction do PracticeMailer.patient_letter( letter: letter, to: practice_email_address ).deliver_later # ! see comment # Flag as sent gp_recipient.update(emailed_at: Time.zone.now) end end def practice_email_address PracticeEmail.new(letter).address end def policy @policy ||= DeliveryPolicy.new(letter) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems