How to send email - SAPUI5 -


i trying send sample email in sapui5. have used sap.m.urlhelper.triggeremail(["dummy@mail.com"], ["sample subject"], ["hi"]);. not working. have tried using window.top.location = "mailto:" + email + "&subject=" + subject + "&body=" + message;. no luck.

below getting

enter image description here

enter image description here

try this:

    sap.m.urlhelper.triggeremail("dummy@mail.com", "sample subject", "hi"); 

it should without [ ] because parameters triggeremail expects of type string


Comments

Popular posts from this blog

java - Suppress Jboss version details from HTTP error response -

gridview - Yii2 DataPorivider $totalSum for a column -

Sass watch command compiles .scss files before full sftp upload -