Skip to content

Instantly share code, notes, and snippets.

View lucasltavares's full-sized avatar

Lucas Lima lucasltavares

View GitHub Profile
@velizarn
velizarn / sendgrid.bash
Last active March 12, 2024 13:13
Send email from bash script by using SendGrid API
#!/bin/bash
SENDGRID_API_KEY=""
EMAIL_TO=""
FROM_EMAIL=""
FROM_NAME=""
SUBJECT=""
bodyHTML="<p>Email body goes here</p>"