New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sendgrid_cli_mailer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sendgrid_cli_mailer

  • 0.6.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

SendgridCliMailer

This is a simple gem I wrote so I could email from Utility servers or servers without Rails from CLI. I chose Ruby so I wouldn't have to depend on any SMTP deamons,etc.

Thanks @freerobby at https://github.com/freerobby/sendgrid_toolkit for the Ruby API.

Installation

Add this line to your application's Gemfile:

gem 'sendgrid_cli_mailer'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sendgrid_cli_mailer

Usage

Using command line arguments

You can send a message with a body specified via arguments:

sg_mail mail --from 'admin@yourjoint.com' --to 'hank@me.com' --subject 'Testing CLI' --body 'Short Body' --user 'sg@foo.com' --key '1234'" 

OR use your body input in other ways like so:

sg_mail mail --from 'admin@yourjoint.com' --to 'hank@me.com' --subject 'Testing CLI' --user 'sg@foo.com' --key '1234'" --body `cat /etc/hosts`

Using less command line arguments

You can save a file called .sg_mail in your home directory and this file can make using a little easier.

~/.sg_mail example:

user: foo@bar.com
key: 12351
from: server1@staging.yourdomain.com

Then the command line is a little more terse and similar to unix mail:

sg_mail mail -f devops@yourco.com -t hank@mydomain.com -s "Database Backup complete!" -b "`cat /var/log/db.log`"

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 16 Oct 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc