0

Is there any framework/component in Vue.js which enables email and phone notifications? I couldn't find any useful topic on StackOverlow which could help me. Any advice/solution would be appreciated.

1 Answers1

0

You cannot send emails or SMS directly from your .js client. This is not a Vue.js specific - it applies to all browser clients - pure html with Javascript, Angular, React and any other. I think you should have a look at this answer:

How to send an email from JavaScript

daburu
  • 38
  • 7
  • Thank you for the reply, but what about the sms service? Is there any service in js which enables me to send sms notifications? – Username101010 Jul 23 '18 at 15:00
  • It is exactly the same as for emails. You would have to use some external service. They are called SMS Gateways and provide APIs which allow you to send SMS. I suggest you checking google for this. – daburu Jul 23 '18 at 16:56
  • I'll look into it. Thank you once again! – Username101010 Jul 24 '18 at 07:53