代码之家  ›  专栏  ›  技术社区  ›  wuchuheng

是否可以使用JavaScript收发电子邮件?

  •  -1
  • wuchuheng  · 技术社区  · 6 年前

    enter image description here 我在页面上写了一个静态网站。github。io。因为我没有服务器,所以无法实现数据交互,例如关于用户消息的交互。因此,我想知道是否可以使用JavaScript通过电子邮件发送用户数据并接收其他用户的电子邮件,作为实现数据交互的一种方式。

    2 回复  |  直到 6 年前
        1
  •  1
  •   channasmcs    6 年前

    您可以使用mailgun API发送, 轻松接收和跟踪电子邮件。 https://smtpjs.com/

    Email.send("from@you.com","to@them.com","This is a subject","this is the body","smtp.yourisp.com","username","password");
    
        2
  •  0
  •   thomi    6 年前

    看看 Sending emails with Javascript 。但就个人而言,我更喜欢一些服务,而不是这个解决方案。签出表单spree: https://formspree.io/ 它似乎是为这种事情而设计的,不需要任何JavaScript。

    如果你需要更多的控制, https://aws.amazon.com/ses 是亚马逊的简单电子邮件服务。您可以通过API发送消息。邮枪( https://www.mailgun.com/ )与此类似,添加到您的页面可能更便宜。