当用户单击一个按钮时,我需要从报告中发送包含更多信息的电子邮件
我尝试使用emailComposer,但我不想要它。
let email = {
to: 'max@mustermann.de',
cc: 'erika@mustermann.de',
bcc: ['john@doe.com', 'jane@doe.com'],
attachments: [
'file://img/logo.png',
'res://icon.png',
'base64:icon.png//iVBORw0KGgoAAAANSUhEUg...',
'file://README.pdf'
],
subject: 'Cordova Icons',
body: 'How are you? Nice greetings from Leipzig',
isHtml: true
}
// Send a text message using default options
this.emailComposer.open(email);
该插件打开电子邮件应用程序,我只想自动发送电子邮件。
谢谢!
答案 0 :(得分:0)
您不能仅使用设备的用户电子邮件帐户发送电子邮件。
如果要执行此操作,则必须使用具有API的第三方电子邮件发送服务。
MailGun非常好,每月提供10,000个免费电子邮件,接下来的1万个仅5美元。
尽管有很多不同的服务,只需搜索“交易电子邮件提供商”,您就会找到这些类型的公司。