Socket
Socket
Sign inDemoInstall

aws-ses-rails31

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-ses-rails31


Version published
Maintainers
2
Created
Source

= AWS::SES

<%= docs_for['AWS::SES'] %>

== Send E-mail

<%= docs_for ['AWS::SES::SendEmail'] %>

== Addresses

<%= docs_for['AWS::SES::Addresses'] %>

== Info

<%= docs_for['AWS::SES::Info'] %>

== Rails

This gem is compatible with Rails >= 3.1.0 and Rails 2.3.x

To use, first add the gem to your Gemfile:

gem "aws-ses-rails31", "~> 0.4.4", :require => 'aws/ses'

== For Rails 3.x

Then, add your Amazon credentials and extend ActionMailer in config/initializers/amazon_ses.rb:

ActionMailer::Base.add_delivery_method :amazon_ses, AWS::SES::Base,
  :access_key_id     => 'abc',
  :secret_access_key => '123'

Then set the delivery method in config/environments/*rb as appropriate:

config.action_mailer.delivery_method = :amazon_ses

== For Rails 2.3.x

Then set the delivery method in config/environments/*rb as appropriate:

config.after_initialize do
  ActionMailer::Base.delivery_method = :amazon_ses
  ActionMailer::Base.custom_amazon_ses_mailer = AWS::SES::Base.new(:secret_access_key => 'abc', :access_key_id => '123')
end

== Issues

=== HTTP Segmentation fault

If you get this error: net/http.rb:677: [BUG] Segmentation fault

It means that you are not running with SSL enabled in ruby. Re-compile ruby with ssl support or add this option to your environment: RUBYOPT="-r openssl"

=== Rejected sending

If you are receiving this message and you HAVE verified the [source] please check to be sure you are not in sandbox mode! "Email address is not verified.MessageRejected (AWS::Error)" If you have not been granted production access, you will have to verify all recipients as well.

http://docs.amazonwebservices.com/ses/2010-12-01/DeveloperGuide/index.html?InitialSetup.Customer.html

== Source

Available at: https://github.com/drewblas/aws-ses

== Contributing to aws-ses

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2011 Drew Blas. See LICENSE for further details.

== Thanks

Special thanks to Marcel Molina Jr. for his creation of AWS::S3 which I used portions of to get things working.

=== Other Contributors:

  • croaky
  • nathanbertram
  • sshaw
  • teeparham (documentation)
  • pzb

FAQs

Package last updated on 22 Jun 2011

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