mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
38 lines
1 KiB
Ruby
38 lines
1 KiB
Ruby
|
#
|
||
|
# A helper class to send an email. It will also handle a nil message, which it considers
|
||
|
# to be "do nothing". This is because some Mailers will decide not to do work for some
|
||
|
# reason. For example, emailing a user too frequently. A nil to address is also considered
|
||
|
# "do nothing"
|
||
|
#
|
||
|
# It also adds an HTML part for the plain text body using markdown
|
||
|
#
|
||
|
class EmailSender
|
||
|
|
||
|
def initialize(message, email_type, user=nil)
|
||
|
@message = message
|
||
|
@email_type = email_type
|
||
|
@user = user
|
||
|
end
|
||
|
|
||
|
def send
|
||
|
return if @message.blank?
|
||
|
return if @message.to.blank?
|
||
|
return if @message.body.blank?
|
||
|
|
||
|
plain_body = @message.body.to_s
|
||
|
|
||
|
@message.html_part = Mail::Part.new do
|
||
|
content_type 'text/html; charset=UTF-8'
|
||
|
body PrettyText.cook(plain_body, environment: 'email')
|
||
|
end
|
||
|
|
||
|
@message.deliver
|
||
|
|
||
|
to_address = @message.to
|
||
|
to_address = to_address.first if to_address.is_a?(Array)
|
||
|
|
||
|
EmailLog.create!(email_type: @email_type, to_address: to_address, user_id: @user.try(:id))
|
||
|
end
|
||
|
|
||
|
end
|