How to send email After signUp in ionic 3

I am working on ionic application. My requirement is that when a user signup a verification email is sent on his email. i don’t know how to send email in ionic. i worked it in angular and asp.net but not ionic/angular.Any help would appreciated.Below code with email-composer is used by me no error done but no email is sent

let email = {
        to: 'rizwan.345awan@gmail.com',
        cc: 'rizwan.345awan@gmail.com',
        bcc: ['rizwan.345awan@gmail.com', ''],
        attachments: [],
        subject: 'Product Enquiry',
        body: 'This is test email',
        isHtml: true
      };
      this.emailComposer.open(email);

probably best solution is to send email from server not from user side
there is default email composer in .net which will help you to achieve it or may be you can find boilerplate code on google

1 Like