fetch('https://sigmail-gic3.onrender.com/api/sendMail', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: 'почтаПолучателя',
title: 'заголовокПисьма',
text: 'содержаниеПисьма'
})
});
fetch('https://sigmail-gic3.onrender.com/api/sendMails', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: ['почтаПолучателя1', 'почтаПолучателя2', 'почтаПолучателя3'...],
title: 'заголовокПисьма',
text: 'содержаниеПисьма'
})
});
fetch('https://sigmail-gic3.onrender.com/api/codeConfirm', {
method:'POST',
headers: {
'Content-Type':'application/json'
},
body: JSON.stringify({
to: 'почтаПолучателя',
senter: 'имяСервиса'
})
})
.then(response => response.text())
.then(data => console.log(data));