Last active
April 10, 2016 23:05
-
-
Save stephenboyd/392b86ce37e62c40022466034e7497bb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HTTP.post('https://api.sendgrid.com/v3/contactdb/recipients', { | |
| headers: { | |
| Authorization: "Bearer API", | |
| 'Content-Type': 'application/json' | |
| }, | |
| content: "[{'email': '${email}'}]" | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HTTP.post('https://api.sendgrid.com/v3/contactdb/recipients', { | |
| headers: { | |
| Authorization: "Bearer API", | |
| 'Content-Type': 'application/json' | |
| }, | |
| content: "[{\"email\": \"${email}\"}]" | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment