async function sendMail(email, name, message)
{
const res = await fetch('https://api.sendgrid.com/v3/mail/send',
{
method: 'POST',
headers : {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + SENDGRID_API
},
body:'{"personalizations": [{"to": [{"email": "email@addressto.com"}]}],"from": {"email": "email@addressfrom.com"}, "reply_to": {"email": "'+email+'"}, "subject": "Contact from website' +name+'" ,"content": [{"type": "text/plain", "value": " '+message+'"}]}'
});
return {success: true, results: res};
}
async function sendMail(email, name, message)
{
const res = await fetch('https://api.sendgrid.com/v3/mail/send',
{
method: 'POST',
headers : {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + SENDGRID_API
},
body:'{"personalizations": [{"to": [{"email": "email@addressto.com"}]}],"from": {"email": "email@addressfrom.com"}, "reply_to": {"email": "'+email+'"}, "subject": "Contact from website' +name+'" ,"content": [{"type": "text/plain", "value": " '+message+'"}]}'
});
return {success: true, results: res};
}