Questions tagged [postmark]

Postmark helps deliver and track transactional emails for web applications. In a nutshell, the service replaces SMTP (or Sendmail) with a far more reliable, scalable and care-free environment.

From its developer site:

Postmark helps deliver and track transactional emails for web applications. In a nutshell, the service replaces SMTP (or Sendmail) with a far more reliable, scalable and care-free environment. In addition, you can track statistics such as number of emails sent or processed, opens, bounces and spam complaints.

Resources

108 questions
19
votes
3 answers

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 mailer that handles sending receipts for purchases but…
grafikchaos
  • 555
  • 1
  • 4
  • 13
16
votes
1 answer

Convert curl example to pycurl

Could someone convert the following PostMark curl example to pycurl? curl -X POST "http://api.postmarkapp.com/email" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "X-Postmark-Server-Token:…
Darth
  • 359
  • 1
  • 2
  • 8
14
votes
4 answers

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 @users UserMailer.new_product_arrival(user,…
anil.n
  • 507
  • 2
  • 4
  • 14
9
votes
2 answers

DMARC/SPF configuration error

I have a domain registered at domains.google.com that I use with a G Suite account and also to send email from SES and mailchimp. My DNS records look correct to me (Mailchimp instructions): @ TXT "v=spf1 include:_spf.google.com…
gaefan
  • 14,322
  • 16
  • 52
  • 100
7
votes
1 answer

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 raises Postmark::InvalidMessageError errors to handle…
dgilperez
  • 9,981
  • 8
  • 60
  • 89
6
votes
1 answer

Mailer method not being called?

inside controller: def update @user.update({approved: true}) UserMailer.send_approved_mail(@user) redirect_to(root_url) end inside user_mailer.rb class UserMailer < Devise::Mailer def send_approved_mail(user) @resource =…
codemilan
  • 900
  • 2
  • 9
  • 28
5
votes
1 answer

Can I Use Postmark to Create Threaded Replies?

Like many web apps, we use Postmark to send all notifications for server side events. Many of our events are grouped and related by something simple and logical (think multiple replies to the same issue, like in GitHub). Right now, every email sent…
hjc1710
  • 556
  • 4
  • 15
4
votes
1 answer

Receiving Emails with Google Cloud Functions in Firebase

I'd like to build an email drop service. Is it anyhow possible to receive incoming emails with Google cloud functions, process them and store them in firebase db? I'm thinking of something similar to Amazon simple email service SES in combination…
Manuel
  • 8,016
  • 12
  • 56
  • 93
4
votes
1 answer

All Email Send Through Postmark Are Queued on Postmark Server

I have used CI with Postmark app to send email. I have used CI mail functionality with postmark app. I have used their SMTP feature to send email. Email are being sent but all the emails are being queued on post mark server. Any idea why this is…
Saroj Shrestha
  • 127
  • 1
  • 12
4
votes
1 answer

Using module "child_process" without Webpack

I'm using Webpack to bundle dependencies, one of which is the emailing service postmark. This service depends upon something called child_process that apparently ships with node. The problem is, when I attempt to run webpack to bundle my app, it…
sir_thursday
  • 4,820
  • 8
  • 55
  • 102
4
votes
3 answers

Ruby Mailer: Wrong number of arguments

I'm working on building out my mailer, but I keep running into: wrong number of arguments (0 for 1) Call my crazy, but I feel like I defined everything correctly: Controller (truncated for brevity): def create @cms484 =…
PSCampbell
  • 834
  • 9
  • 22
3
votes
1 answer

How to send customize e-mail with Firebase cloud functions

I want to send a mail once a user is created with a firebase cloud functions, using nodemail and postmark. I followed this tutorial : Tutorial link from Dave Martin But keep getting this error: There was an error while sending the welcome email: {…
3
votes
1 answer

Mail going to recepient spam folder

We are using Post Mark API for sending mails to recipient for every action performing in our app.We are using VM file as the template for sending mails.Our clients are repeatedly saying that mail was received in spam folder instead of inbox so we…
selva
  • 151
  • 1
  • 2
  • 13
3
votes
2 answers

Image not showing in Gmail - Using django python-postmark

I've used django python-postmark for mailing. Now my problem is that my static images are not shown on Gmail. Gmail prepends a url proxy to the src of the images. if the prepended url proxy is removed, the image will show perfectly. What am I…
Christopher
  • 418
  • 1
  • 5
  • 19
3
votes
2 answers

Rails, Devise, Postmark Gem - using postmark templates for devise mailer

I'm trying to figure out how to setup my Rails 4 app so that the devise mailer sends through Postmark, using Postmark Templates. I have postmark-rails gem in my gem file. I have everything working, except I can't figure out how to give the…
Mel
  • 3,699
  • 13
  • 71
  • 194
1
2 3 4 5 6 7 8