mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
40 lines
789 B
JSON
40 lines
789 B
JSON
{
|
|
"send": [
|
|
{
|
|
"title": "Send email",
|
|
"run_check": false,
|
|
"request": {
|
|
"subject": "Email verification",
|
|
"textBody": "Hi there,\n\nPlease verify your email by clicking this link: $micro_verification_link",
|
|
"from": "Awesome Dot Com"
|
|
},
|
|
"response": {}
|
|
}
|
|
],
|
|
"parse": [
|
|
{
|
|
"title": "Parse email",
|
|
"run_check": false,
|
|
"request": {
|
|
"address": "Joe Blogs <joe@example.com>"
|
|
},
|
|
"response": {
|
|
"name": "Joe Blogs",
|
|
"address": "joe@example.com"
|
|
}
|
|
}
|
|
],
|
|
"validate": [
|
|
{
|
|
"title": "Validate email",
|
|
"run_check": false,
|
|
"request": {
|
|
"address": "joe@example.com"
|
|
},
|
|
"response": {
|
|
"is_valid": true
|
|
}
|
|
}
|
|
]
|
|
}
|