如何使用带有角度4的谷歌smtp发送电子邮件

时间:2017-12-03 13:27:25

标签: angular smtp gmail

我想使用google smpt使用angular 4 app发送邮件。我尝试使用email js发送电子邮件。但我不能用angular 4 app来使用它。当我尝试导入时,它说没有任何模块。如何使用此existing library发送邮件,或者是否有其他方式使用angular 4 application发送包含google smpt的邮件。

2 个答案:

答案 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)

使用npm emailjs

安装包:

npm install emailjs