1

Good day, I am currently developing an e-commerce mobile app using Ionic 2 and I want to implement email confirmation(send verification code via email) in signing up new user account. Is there any way or tutorial I can use or based upon to implement email confirmation using Angular 2? Hope you can help me, thanks in advance.

noob
  • 241
  • 6
  • 17

1 Answers1

1

You need to send a request from your front-end (Angular2) to your back-end (I recommend NodeJS for that), which will reach your mail server and send the mail.

Have a look at this post showing a good example : Sending Email from Angular 2

Alex Beugnet
  • 3,839
  • 4
  • 22
  • 39