Web APIでメール送信可能
(以下、v3のREST API利用例)
・PHP
・Ruby
・Python
・Node.js
・Perl
・Go
・C#
・Java
・COBOL
豊富なライブラリ
https://github.com/sendgrid
SendGridのいいところ
curl --request POST
-url https://api.sendgrid.com/v3/mail/send
--header 'Authorization: Bearer API_KEY‘
--header 'Content-Type: application/json'
--data '{"personalizations": [{
"to": [{"email": "
[email protected]"}]}],
"from": {"email": "
[email protected]"},
“subject”: “Title”, "content":
[{"type": "text/plain", "value": “Hello!"}]}'