11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'app/mailers/locomotive/notifications.rb', line 11
def new_content_entry(site, account, entry)
@site, @account = site, account
@entry, @type = entry, entry.content_type
@domain = fetch_domain
subject = new_content_entry_subject(entry, domain: @domain, type: @type.name, locale: account.locale)
from = fetch_from
if @type.public_submission_email_attachments
entry.file_custom_fields.each do |name|
next if (file = entry.send(name)&.file).nil?
attachments[file.filename] = file.read
end
end
mail subject: subject, from: from, to: account.email, reply_to: from
end
|