Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
5answers
7k views

sendgrid vs postmark [closed]

I am evaluating 3rd party services to handle our webapps email. Requirements: Tracking bounces HTML email Customer headers Incoming email queue (Post email to some URL?) Spam filtering of incoming ...
24
votes
6answers
9k views

Sendgrid vs Postmark vs Amazon SES and other email/SMTP API providers? [closed]

Could you please comment on the relative merits/drawbacks for Sendgrid, Postmark, Amazon SES, and other email providers? Which would you recommend, and why? Is there another email service that you ...
2
votes
1answer
185 views

What is the best way to handle Email exceptions in a Rails app using Postmarkapp?

I am using Postmark to handle all email in my Rails 3 app, using postmark-rails gem. Now and then an user introduces a wrong email or a non-existing one with ends up giving hardbounces. Postmark ...
2
votes
3answers
2k views

How can I customize Devise to send password reset emails using PostMark mailer

I'm trying to get all of my system's email notifications under one umbrella using PostMarkApp and utilizing the Rails gems (postmark-rails, postmark-gem, and mail). I have successfully created a ...
1
vote
1answer
295 views

How to use multi-threading in rails 3?

I am sending mail to the users using actionmailer through postmark. This is my code in controller: @users = User.where(some condition) @product = Product.find_by_name(some name).first for user in ...
0
votes
0answers
48 views

Carrierwave: upload file to S3 from name/content/ContentType

I have Carrierwave setup to upload files to S3 in my app just fine. But let's say I want to upload a file with only these info that I get in my controller: { "ContentLength" => 1348515, ...
0
votes
1answer
113 views

Rails 2.3: SMTP settings for Postmarkapp: Connection refused - connect(2)

Does anybody have experience with Postmarkapp? I have a rails 2 app (radiant cms) and try to send emails through SMTP. This is how my smtp settings looks like: config.action_mailer.smtp_settings = ...
0
votes
1answer
89 views

Beginners guide to building a Postmark email system with node.js?

I'm very new to Postmark and node.js. Could any enlighten me on making a system built in node.js that can send emails, with responses pertaining to key words using Postmark. My idea for using such a ...
0
votes
1answer
225 views

Rails/ActionMailer/Postmark-rails sending same e-mail multiple times

I have a problem. My mailer sends the same e-mail 4 times. I'm pretty sure I only call it once though. What could be the reason? Running Rails 3.0.7 on Ruby 1.9.2 and Unicorn, if that matters. Here ...
0
votes
1answer
48 views

Email Services for Web APP

I need a total email system for my web application. Newsletter delivery once per month. Notifications when a user has registered with the web app or performed an action within it. There will be ...