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.
challengepost-postmark
Advanced tools
= Postmark gem
Ruby gem for sending emails through http://postmarkapp.com HTTP API
== Install
The gem is hosted at gemcutter. If you don't have it, install it first:
sudo gem install gemcutter
Then sudo gem install postmark
== Example
#!/usr/bin/env ruby
require 'rubygems'
require 'postmark'
require 'tmail'
Postmark.api_key = "your-api-key"
message = TMail::Mail.new
# make sure you have a sender signature with that email
# from and to also accept arrays of emails.
message.from = "leonard@bigbangtheory.com"
message.to = "Sheldon Cooper <sheldon@bigbangtheory.com>"
message.subject = "Hi Sheldon!"
message.content_type = "text/html"
message.body = "Hello my friend!"
# set custom headers at will.
message["CUSTOM-HEADER"] = "my custom header value"
# tag message
message.tag = "my-tracking-tag"
# set reply to if you need; also, you can pass array of emails.
message.reply_to = "penny@bigbangtheory.com"
p Postmark.send_through_postmark(message).body
You can retrieve various information about your server state using the Public bounces API - http://developer.postmarkapp.com/bounces
# get delivery stats
Postmark.delivery_stats # json
Postmark::Bounce.all # [ bounce, bounce ... ]
bounce = Postmark::Bounce.find(bounce_id) # Bounce
bounce.dump # string, containing raw SMTP data
bounce.reactivate # reactivate hard bounce
== Encryption
To use SSL encryption when sending email configure the library as follows:
Postmark.secure = true
== Requirements
The gem relies on TMail for building the message. You will also need postmark account, server and sender signature set up to use it. If you plan using it in a rails project, check out the postmark-rails gem, which is meant to integrate with ActionMailer.
The plugin will try to use ActiveSupport Json if it is already included. If not, it will attempt using the built-in ruby Json library. You can also explicitly specify which one to be used, using
Postmark.response_parser_class = :Json # :ActiveSupport or :Yajl is also supported.
== Limitations
Currently postmark API does not support attachments. For more information, check the docs at:
http://developer.postmarkapp.com
== Note on Patches/Pull Requests
== Copyright
Copyright (c) 2009 Wildbit LLC. See LICENSE for details.
FAQs
Unknown package
We found that challengepost-postmark 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.
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.