[send_mail] return freeswitch.email Boolean value (#6231)

This commit is contained in:
agree
2022-01-09 08:53:40 -07:00
committed by GitHub
parent a432996055
commit e3e41624e2
@@ -266,10 +266,11 @@ else
"X-Headers: " .. xheaders "X-Headers: " .. xheaders
if file then if file then
freeswitch.email(address, from, mail_headers, body, file) ok = freeswitch.email(address, from, mail_headers, body, file)
else else
freeswitch.email(address, from, mail_headers, body) ok = freeswitch.email(address, from, mail_headers, body)
end end
return ok
end end
end end