Fix. send_mail without file.

This commit is contained in:
Alexey Melnichuk
2015-12-04 16:18:53 +03:00
parent 7c77e1cacd
commit 5c8aa45d44

View File

@@ -90,7 +90,7 @@ if freeswitch then
if file then
freeswitch.email(address, address, mail_headers, body, file)
else
freeswitch.email(address, address, mail_headers, body, file)
freeswitch.email(address, address, mail_headers, body)
end
end
end