added footer to share email

This commit is contained in:
Josh
2017-05-26 16:49:44 -04:00
parent 93f2a83e46
commit 4c34526a57
3 changed files with 5 additions and 3 deletions

View File

@ -339,7 +339,7 @@ class @Recordings
recording_url = row.playbacks[0].url
webcams_url = getHostName(recording_url) + '/presentation/' + id + '/video/webcams.webm'
subject = username + I18n.recording_mail_subject
body = I18n.recording_mail_body + "\n\n" + recording_url
body = I18n.recording_mail_body + "\n\n" + recording_url + "\n\n" + I18n.email_footer_1 + "\n" + I18n.email_footer_2
mailto = "mailto:?subject=" + encodeURIComponent(subject) + "&body=" + encodeURIComponent(body);
window.open(mailto);