
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
= SendGrid gem for Rails 3 {}[http://travis-ci.org/PavelTyk/sendgrid-rails]
SendGrid gem provides ActionMailer::Base extensions to use SendGrid API features in you emails. It extends ActionMailer with next methods:
substitute(patters_string, array_of_substitunion_strings)
uniq_args(hash_of_unique_args)
category(category_string)
open_tracking(enabled = true)
add_filter_setting(filter_name, setting_name, value)
== Rails 3 configuration
In your Gemfile:
gem 'sendgrid-rails', '~> 2.0'
In config/initializers/mail.rb:
ActionMailer::Base.register_interceptor(SendGrid::MailInterceptor)
ActionMailer::Base.smtp_settings = {
:address => 'smtp.sendgrid.net',
:port => '25',
:domain => 'example.com',
:authentication => :plain,
:user_name => 'login@example.com',
:password => 'your password'
}
If you use Heroku, here what the mailer initializer may look like:
ActionMailer::Base.register_interceptor(SendGrid::MailInterceptor)
if ENV['SENDGRID_USERNAME'] && ENV['SENDGRID_PASSWORD']
ActionMailer::Base.smtp_settings = {
:address => 'smtp.sendgrid.net',
:port => '465',
:authentication => :plain,
:user_name => ENV['SENDGRID_USERNAME'],
:password => ENV['SENDGRID_PASSWORD'],
:domain => 'heroku.com',
:enable_starttls_auto => true,
:ssl => true
}
ActionMailer::Base.delivery_method = :smtp
end
=== Overriding default recipient in standard SMTP header
Dummy recipient email used in sent email's "To" header and seen in received email's Received header. By default set to 'dummy@email.com'
In config/initializers/mail.rb:
SendGrid.configure do |config|
config.dummy_recipient = 'noreply@example.com'
end
== Usage examples
=== Adding multiple recipients:
class Mailer < ActionMailer::Base
default :from => 'no-reply@example.com',
:subject => 'An email sent via SendGrid'
def email_with_multiple_recipients
mail :to => %w(email1@email.com email2@email.com)
end
end
=== Adding substitution vars
Mailer class definition:
class Mailer < ActionMailer::Base
default :from => 'no-reply@example.com',
:subject => 'An email sent via SendGrid with substitutions'
def email_with_substitutions
substitute '-user_name-', %w(User1 User2)
mail :to => %w(email1@email.com email2@email.com), :body => "Hello, -user_name-!"
end
end
=== Adding category
Mailer class definition:
class Mailer < ActionMailer::Base
default :from => 'no-reply@example.com',
:subject => 'An email sent via SendGrid with substitutions'
def email_with_category
category 'SendGridRocks'
mail :to => 'email1@email.com'
end
end
== Apps (formerly called Filters)
Apps can be applied to any of your email messages and can be configured through SendGrid gem.
=== Open Tracking
Add an invisible image at the end of the email to track e-mail opens. If the email recipient has images enabled on the email client, a request to server for the invisible image is executed and an open is logged.
class Mailer < ActionMailer::Base
default :from => 'no-reply@example.com',
:subject => 'An email sent via SendGrid'
def email_with_open_tracking_enabled
open_tracking true
mail :to => 'email@email.com'
end
end
== Change log
v3.1.0
template_id
featurev3.0.0
:alias_method_chain
has been replaced with Module#prepend
Ruby 2.0 featurev2.0.5
deliver_at
feature.v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0
FAQs
Unknown package
We found that sendgrid-rails demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.