cherry picked changes from 4.0 branch

This commit is contained in:
Matthew Vale
2015-12-31 10:11:31 +00:00
parent afbd7a93af
commit 4fdb6e9916
@@ -156,11 +156,20 @@
file = voicemail_dir.."/"..id.."/msg_"..uuid.."."..vm_message_ext; file = voicemail_dir.."/"..id.."/msg_"..uuid.."."..vm_message_ext;
--send the email --send the email
send_mail(headers, if (voicemail_file == "attach") then
voicemail_mail_to, freeswitch.email(voicemail_mail_to,
{subject, body}, voicemail_mail_to,
(voicemail_file == "attach") and file "To: "..voicemail_mail_to.."\nFrom: "..voicemail_mail_to.."\nX-Headers: "..headers.."\nSubject: "..subject,
); body,
file
);
else
freeswitch.email(voicemail_mail_to,
voicemail_mail_to,
"To: "..voicemail_mail_to.."\nFrom: "..voicemail_mail_to.."\nX-Headers: "..headers.."\nSubject: "..subject,
body
);
end
end end
--whether to keep the voicemail message and details local after email --whether to keep the voicemail message and details local after email