我想使用google smpt
使用angular 4 app
发送邮件。我尝试使用email js发送电子邮件。但我不能用angular 4 app
来使用它。当我尝试导入时,它说没有任何模块。如何使用此existing library
发送邮件,或者是否有其他方式使用angular 4 application
发送包含google smpt
的邮件。
答案 0 :(得分:5)
你想要做的事情不会奏效。您需要该框架的nodejs服务器端应用程序。
从emailjs
页面发送:send emails, html and attachments (files, streams and strings) from node.js to any smtp server
。
尝试使用此服务https://www.emailjs.com/docs/api-reference/installation/
<script type="text/javascript" src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("YOUR USER ID");
})();
</script>
您需要在其网站上创建一个帐户并替换“您的用户ID”#34;使用您帐户的个人ID。
答案 1 :(得分:1)