SendGrid API v3 mock for using in tests
- /v3/mail/send -- mock for SendGrid API v3 send email endpoint
- /ctl/list -- list all sent messages, message format is the same like for send operation
- /ctl/clear -- clear list of sent messages
Examples
Send message:
POST http://dockerhost:9001/v3/mail/send
Content-Type: application/json
Accept: application/json
Authorization: Bearer key
{
"personalizations": [
{
"subject": "test",
"to": [
{
"email": "user@mail.com"
}
]
}
],
"from": {
"email": "sender@mail.com"
},
"content": {
"type": "text/plain",
"value": "Hello!"
}
}
List messages:
GET http://dockerhost:9001/ctl/list
Clear messages:
POST http://dockerhost:9001/ctl/clear
Image: vbogretsov/0.1.0
Port: 9001
Environment variables:
- SGMOCK_KEY -- test value for SendGrid API key
See the LICENSE file.