An open API service indexing awesome lists of open source software.

https://github.com/trikko/sendgrid

Unofficial sendgrid API for dlang
https://github.com/trikko/sendgrid

api d dlang sendgrid

Last synced: 4 months ago
JSON representation

Unofficial sendgrid API for dlang

Awesome Lists containing this project

README

          

# sendgrid
Unofficial sendgrid API for dlang. [docs](https://trikko.github.io/sendgrid)

# example
```d
auto sent = new SendGrid(YOUR_API_KEY)
.addPersonalization(new SendGridPersonalization("john@example.com", "John Doe"))
.from("me@example.com")
.subject("hello world")
.addContent("this is a test", "text/plain")
.send();

if (sent) writeln("Message sent!");
```