使用Angular 2发送电子邮件

8

如何从Angular 2应用程序发送电子邮件?

我正在Firebase上托管一个Angular 2应用程序。我想将联系表单作为电子邮件发送。理想情况下,我的解决方案将使用Nodejs,但我愿意使用任何可以正确完成工作的东西。以下是我的应用程序概述。


客户端进度

这是我的表单:

<!-- contact-form.component.html -->

<form [formGroup]="formService.contactForm" (ngSubmit)="formService.onSubmitForm()">

  <input type="text" formControlName="userFirstName">
  <label>First Name</label>
  
  <input type="text" formControlName="userLastName">
  <label>Last Name</label>

  <button type="submit">SUBMIT</button>
  
</form>

这是我的联系表单组件:

以下是相关的IT技术内容:

// contact-form.component.ts
import { Component } from '@angular/core';

import { ContactFormService } from './contact-form.service';

@Component({
  selector: 'contact-form',
  templateUrl: './contact-form.component.html',
  styleUrls: ['./contact-content.component.css'],
  providers: [ContactFormService]
})
export class ContactFormComponent {

  constructor(private formService: ContactFormService) {
    formService.buildForm();
  }

}

这里是我的联系表单服务:

// contact-form.service.ts

import { Injectable } from '@angular/core';

import { FormGroup, FormBuilder, FormControl, Validators } from '@angular/forms';


@Injectable()
export class ContactFormService {

  constructor(public formBuilder: FormBuilder) { }

  contactForm: FormGroup;
  formSubmitted: boolean = false;


  buildForm() {
    this.contactForm = this.formBuilder.group({
      userFirstName: this.formBuilder.control(null, Validators.required),
      userLastName: this.formBuilder.control(null, Validators.required)
    });
  }

  onSubmitForm() {
    console.log(this.contactForm.value);
    this.formSubmitted = true;
    this.contactForm.reset();
  }

}

当我点击提交按钮时,表单数据将成功显示在控制台中。


服务器端 Nodejs 进展

我可以使用 SendGrid 和 Nodejs 成功地从命令提示符发送电子邮件:

例如:sendmail.js

var Sendgrid = require('sendgrid')(
  process.env.SENDGRID_API_KEY || '<my-api-key-placed-here>'
);

var request = Sendgrid.emptyRequest({
  method: 'POST',
  path: '/v3/mail/send',
  body: {
    personalizations: [{
      to: [{ email: 'my.email@gmail.com' }],
      subject: 'Sendgrid test email from Node.js'
    }],
    from: { email: 'noreply@email-app.firebaseapp.com' },
    content: [{
      type: 'text/plain',
      value: 'Hello Joe! Can you hear me Joe?.'
    }]
  }
});

Sendgrid.API(request, function (error, response) {
  if (error) {
    console.log('Mail not sent; see error message below.');
  } else {
    console.log('Mail sent successfully!');
  }
  console.log(response);
});

如果我在命令提示符中输入以下内容,邮件将成功发送:

node sendmail

然而,我无法弄清如何将我的提交表单数据链接到sendmail.js,并且也无法弄清如何通过点击提交按钮来激活sendmail.js中的代码。

如果有任何帮助,将不胜感激。谢谢您的时间!


我之前用 Angular 2 做过这个,我会看看我是怎么做的。 - Jim Factor
2个回答

3
尝试将您的sendmail.js重写为REST服务,例如:
const Sendgrid = require('sendgrid')(
  process.env.SENDGRID_API_KEY || '<my-api-key-placed-here>'
);

const express = require('express');
const bodyParser = require('body-parser');
const app = express();

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());

app.post('/send-mail', function (req, res) {
  // PUT your send mail logic here, req.body should have your fsubmitted form's values
  sendMail(req.body);
  res.header("Access-Control-Allow-Origin", "*");
  res.header("Access-Control-Allow-Headers", "X-Requested-With");
  res.send('SEND MAIL');  
})

app.listen(3000, function () {
  console.log('LISTENING on port 3000');
})


function sendMail(formData) { 
  let request = Sendgrid.emptyRequest({
    method: 'POST',
    path: '/v3/mail/send',
    body: {
      personalizations: [{
        to: [{ email: 'my.email@gmail.com' }],
        subject: 'Sendgrid test email from Node.js'
      }],
      from: { email: 'noreply@email-app.firebaseapp.com' },
      content: [{
        type: 'text/plain',
        value: `Hello ${formData.userFirstName} ${formData.userLastName}! Can you hear me ${formData.userFirstName}?.` 
      }]
    }
  });

  Sendgrid.API(request, function (error, response) {
    if (error) {
      console.log('Mail not sent; see error message below.');
    } else {
      console.log('Mail sent successfully!');
    }
    console.log(response);
  });
}

请注意,我在电子邮件正文中使用了表单数据。
然后在您的Angular提交函数中,只需执行:
http.post('http://localhost:3000/send-mail', this.contactForm.value);

1

编辑: 我刚刚看到你正在使用Firebase,我会研究一下这会如何改变事情。

如何在Firebase中运行服务器端代码?

Angular 2是客户端,如果您想使用密钥进行API调用,您应该在服务器端进行,即node.js或其他服务器。

因为您有sendmail.js作为脚本,请考虑使用node.js提供Angular 2应用程序,然后使用express创建API端点,例如/api/sendMail,您可以从Angular 2应用程序发出XHR / AJAX请求。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接