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
2
votes
0 answers

When I send an email with a comma in the "To" header, the header gets garbled, even though the display name is in quotes. Why?

I have a Rails app (rails 4.1.11) using Postmark for email delivery. I'm trying to include the user's name in the "To" header of my emails, and I'm having trouble in cases where the name contains a comma, even though I'm putting the name in…
Dave Urban
  • 310
  • 4
  • 7
2
votes
1 answer

Rails email using Postmark API on Heroku -- connection reset by peer

I have multiple bruises today, trying to learn two things at once... the API for Postmark and Rails HTTP requests. Goal: Use Postmark add-on for Heroku to send production email. I am trying to combine this article on HTTP…
vbsql7
  • 684
  • 2
  • 9
  • 17
2
votes
1 answer

postmark embed image in body

I am using Postmark for sending emails and want to embed image into html_body. I am able to think of two ways to do this. Get the html body, search for image tags in it. Extract the src of image tags and create an attachement with content id and…
Jayendra Gothi
  • 682
  • 2
  • 11
  • 26
2
votes
1 answer

Sending email via Postmark on Heroku with a MeteorJS application

I have recently deployed my MeteorJs application to Heroku and have setup the Postmark addon to be able to send emails. I setup the MAIL_URL config item and the authentication works, but when an email is sent Postmark returns this error: ErrorCode:…
dennismonsewicz
  • 25,132
  • 33
  • 116
  • 189
2
votes
1 answer

ID variable in cPanel email forward

I am building an app that incorporates Postmark App's Incoming Email capability to keep a threaded list of replies to an email. Their documentation suggests adding the post ID to the reply-to address - for example reply+POSTID@domain.com. However,…
NightMICU
  • 9,000
  • 30
  • 89
  • 121
2
votes
1 answer

mail not sending using devise, heroku, and postmark on rails

I am having an issue with my app sending forgot password emails - Please see my heroku logs below ...any help would be great thank you as I am kinda a novice with mail integration and cannot seem to decipher these logs..... C:\sites\code\OM…
westman2222
  • 663
  • 1
  • 12
  • 30
2
votes
4 answers

How to use postmark email on node.js?

I am new to node.js and not able to figure out how to reference js library postmark.js in node.js. var POSTMARK_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxx"; var postmark = require("postmark")(POSTMARK_KEY); postmark.send({ "From": from, "To":…
updev
  • 623
  • 5
  • 14
  • 32
2
votes
2 answers

Postmark works on local but not staging, mysterious sender signature issue

This is the error in Heroku's log: 2013-06-23T04:57:20.501850+00:00 app[worker.1]: [Worker(host:e681c9a7-c85b-4ca9-af9c-e9bea92be8f0 pid:2)] Class#send failed with Postmark::InvalidMessageError: Sender signature not defined for From address. - 2…
Aen Tan
  • 3,305
  • 6
  • 32
  • 52
1
vote
1 answer

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 = { :address => "smtp.postmarkapp.com", …
Hadi S.
  • 11
  • 4
1
vote
0 answers

How to put a conditionnal in a scope on mustachio for postmark template

Hello I can't find a solution for this problem I have a template like this (all my trads are manage with balises like this in my template): {{french}}Bonjour{{/french}}{{english}}Hello{{/english}} I wanna add a conditionnal balise in each trad…
1
vote
2 answers

How to fix OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=error: no protocols available

I'm getting this error when triggered by mail using the deliver-later method using the postmark-mailer gem in Rails. 2022-09-13T12:03:19.061Z 45075 TID-osgak45wb PostmarkMailer::DeliveryJob JID-031252f83654da580e4d3fcf INFO:…
1
vote
0 answers

Rails sending Email with Postmark with message stream configuration

I am sending some email messages using the Postmark API with the postmark gem. gem 'postmark-rails' I want the messages to use a specific Message Stream. I am trying to do it using the action mailer default_options…
Cesar
  • 1,610
  • 2
  • 16
  • 42
1
vote
1 answer

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 is the mailer: class NotificationMailer <…
Gargron
  • 808
  • 7
  • 10
1
vote
1 answer

Add custom property to Mail in Laravel

I'm trying to get Postmark's new Message Streams working with Laravel. Is there a way of adding the property + value '"MessageStream": "notifications" to the JSON body of an email sent using Laravel mail? I'm guessing I will need to extend the…
Adnan
  • 3,129
  • 6
  • 31
  • 36
1
vote
1 answer

Postmark mailing working only on production env

I have three environments and postmark mailing is just working on production. I checked the api keys that I created and nothing. I even tried to use the same api key from production and it doesn't work on staging. Rails v. 5.0.1 gemfile: gem…
Fillype Farias
  • 622
  • 1
  • 8
  • 20
1 2
3
8 9