-
Notifications
You must be signed in to change notification settings - Fork 6
Home
Kanazawa Yuki edited this page Jun 18, 2021
·
2 revisions
curl --request POST \
--url http://localhost:3030/v3/mail/send \
--header 'Authorization: Bearer SG.xxxxx' \
--header 'Content-Type: application/json' \
--data '{"personalizations": [{
"to": [{"email": "to@example.com"}]}],
"from": {"email": "from@example.com"},
"subject": "Test Subject",
"content": [{"type": "text/plain", "value": "Test Content"}]
}'