Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
= AWS::SES
{}[http://badge.fury.io/rb/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.0.0 and Ruby 2.3.x
To use, first add the gem to your Gemfile:
gem "aws-ses-v4", "~> 0.8.1", :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 :ses, AWS::SES::Base,
:access_key_id => 'abc',
:secret_access_key => '123',
:signature_version => 4
Then set the delivery method in config/environments/*rb
as appropriate:
config.action_mailer.delivery_method = :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.
== Source
Available at: https://github.com/drewblas/aws-ses
== Contributing to aws-ses
== Copyright
Copyright (c) 2020 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:
FAQs
Unknown package
We found that aws-ses-v4 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.