Crystal Sendgrid
This library provides a client interface to Sendgrid's mailing API.
Installation
-
Add the dependency to your
shard.yml
:dependencies: sendgrid: github: vici37/cr-sendgrid
-
Run
shards install
Usage
require "sendgrid"
client = Sendgrid::Client.new("SENDGRID_API_KEY")
# `message` is a helper method that will handle the construction of the Sendgrid::Message that gets sent through `send`.
# For the full suite of features the Sendgrid Send Mail API provides, you can use all of the constructs defined
# in ./src/sendgrid/sendgrid_structs.cr directly
message = client.message(
# The `to` param accepts a single email address, a hash (seen below), or a list of email addresses (strings)
to: {"Fred Flinstone" => "[email protected]", "Wilma Flinstone" => "[email protected]"},
# Also accepts a single string for the email, or a named tuple for name, email (below)
from: {name: "Barny Rubble", email: "[email protected]"},
subject: "Dino got out again",
content: "Did you know?"
)
# Send the email
client.send(message)