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

128 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
17
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
  • 379
  • 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
  • 509
  • 2
  • 5
  • 17
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…
new name
  • 15,861
  • 19
  • 68
  • 114
8
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
  • 10,716
  • 8
  • 68
  • 96
6
votes
1 answer

Postmark template: dynamic variable with html processed as text instead of html

I have a Postmark email template where the dynamic variable contains html. However, it processes that html as plain text. More concretely, I have the code below. The variable body is sent to the email template, however the

is displayed as…
Nick
  • 3,496
  • 7
  • 42
  • 96
6
votes
1 answer

Mustachio: if-statement without scoping - is it possible?

I'm moving e-mail templates from Mandrill to Postmark which requires converting Handlebars to Mustachio. In Handlebars I had something like this: {{#if some_variable}}

This text uses variable: {{some_variable}} {{/if}} According to Mustache…

Szymon Stepniak
  • 40,216
  • 10
  • 104
  • 131
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
  • 1,072
  • 3
  • 12
  • 32
5
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
  • 207
  • 5
  • 13
5
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
  • 5,270
  • 12
  • 64
  • 118
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
  • 576
  • 4
  • 17
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
  • 9,112
  • 13
  • 70
  • 110
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
  • 858
  • 9
  • 27
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
  • 184
  • 2
  • 3
  • 16
1
2 3
8 9