Files
old-holivud2/app/helpers/mail_helper.rb

12 lines
480 B
Ruby
Raw Normal View History

2020-05-31 22:38:19 +02:00
module MailHelper
def mail_to_for_multiple_edls(content, project)
subject = "Multiple Adobe Premiere EDLs needed for #{project.account.name}'s #{project.name} project"
body =
"INSTRUCTIONS\n\n" \
"1. Tell us the name of the video: \n\n" \
"2. Attach each EDL to this email. Please make sure to indicate whether the EDL is a Video Only, Graphics Only, or Audio Only EDL."
2020-08-20 06:50:51 +02:00
mail_to "info@mesuite.ai", content, subject: subject, body: body
2020-05-31 22:38:19 +02:00
end
end