Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- event.preventDefault();
- const data = {
- service_id: 'xx',
- template_id: 'xxx',
- user_id: 'xxx',
- template_params: {
- 'from_name': formData.username,
- 'subject': 'richiesta info da sito web',
- 'message_html': `
- Ciao, ti scrivo per ricevere informazioni.
- Mi chiamo ${formData.username}
- Phone: ${formData.phone}
- Email: ${formData.email}
- `
- }
- }
- axios.post('https://api.emailjs.com/api/v1.0/email/send', data)
- .then(res => {
- console.log('EMAIL INVIATA', res)
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement