如何发送电子邮件 - SAPUI5

时间:2016-07-19 12:20:40

标签: email sapui5 sap-fiori

我正在尝试在SAPUI5中发送示例电子邮件。我使用过sap.m.URLHelper.triggerEmail(["dummy@mail.com"], ["sample Subject"], ["Hi"]);。但它没有用。我也尝试过使用window.top.location = "mailto:" + email + "&subject=" + subject + "&body=" + message;。但没有运气。

Below is what i am getting

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:2)

试试这个:

    sap.m.URLHelper.triggerEmail("dummy@mail.com", "sample Subject", "Hi");

它应该没有[],因为triggerEmail期望的参数是string

类型