用户订阅时发送电子邮件

Posted

技术标签:

【中文标题】用户订阅时发送电子邮件【英文标题】:Send Email when user is subscribed 【发布时间】:2019-12-08 02:39:53 【问题描述】:

我在后端写了这个方法 router.put('/validateAccount', function (req, res) //这里是实现nodemailer的代码

我想在我的 angular Front-end 中调用它所以我在 inscription.service.ts 中写了一个函数

ValidateAccount(user)
// var headers = new Headers( 'Content-Type': 'application/json' );
// let options = new RequestOptions( headers: headers );
return this.http.post('http://localhost:3333/api/validateAccount',user)   .map((response: Response) => response.json(),err =>err)

我想在 inscription.component.ts 中使用它,在同一个函数中从同一个服务调用 AddUser() 方法

register(event) 
event.preventDefault();
let newUser = 
  type:"particulier",
  login:this.login,
  email: this.email,
  tele: this.tele,
  pass: this.pass,
  confpass: this.confpass

this.inscriptionService.AddUser(newUser).subscribe(res => 
  console.log(res)
  this.formSubmitAttempt = true;
  this._router.navigate(['/inscription']);

,err=>
  // console.log(err)
  // this.message = "email existe déjà"
  // this.showMessage = true;
  alert("email existe deja");
)

这样可以吗,不然怎么办

【问题讨论】:

所以你想在 addUser 之前调用 validate? 是的!确切地。所以我可以向订阅者发送验证电子邮件 【参考方案1】:

使用 RxJS 有更好的方法(比如使用 flatMap 而不是订阅第一个 http 调用),但应该这样做:

this.inscriptionService.AddUser(newUser).subscribe(res => 
      console.log(res)
      this.formSubmitAttempt = true;
      this._router.navigate(['/inscription']);
      this.inscriptionService.ValidateAccount(res).map(res => 
        // do something
      
    

【讨论】:

以上是关于用户订阅时发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress:当用户注册时发送通知,但仅适用于具有订阅者角色的用户

选择未发送时事通讯的用户

在不阻止的情况下发送批量通知电子邮件

使用firebase验证用户注册

通过 sendgrid/mail 发送时,如何向我的电子邮件添加取消订阅链接

Django,使用 Mailchimp 列表发送取消订阅的电子邮件