使用带有html和超链接的emailcomposer ionic发送电子邮件

时间:2018-06-14 01:27:38

标签: typescript email ionic-framework

我想通过离子组件'emailcomposer'发送电子邮件,但是在转到gmail应用程序时它删除了超链接,我想知道是否有人知道该表单,以便不删除这些。< / p>

enter image description here

1 个答案:

答案 0 :(得分:1)

要传递HTML正文,您需要在电子邮件撰写中使用isHtml属性,如下所示

let email = {
  to: 'test@test.com',
  cc: 'cc@rtest.com',
  subject: 'Test mail with HTML body',
  body: '<a href='http://www.google.com'>',
  isHtml: true
};

用于纯文本传递isHtml: false和用于HTM正文传递isHtml: true

希望这会有所帮助!