[Vuejs]-How to – Contact form filled out on Vue APP through API > Magento?

-1👍

this should be two questions and not one. But since I know Magento and how VueSF works with it, I can help with point 2:

There is no API endpoint for magento contact form and there are few ways to do this:

  • Create a magento plugin which provides API for sending requests to and connect vueSF to it (probably the hardest to create for non-magento dev)
  • Create a simple script (separate from magento) which will accept vueSF requests and use the reuest data to send the emails with (probably the easiest to implement since you don’t even have to have magento installed anywhere for this)
  • Use an external service like https://formspree.io/ (just the first one I found on google, not advertising this particular one here)

Leave a comment