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
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
  • 540
  • 2
  • 6
  • 33
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
  • 2,481
  • 26
  • 113
  • 273
3
votes
1 answer

Postmark: Send email with template

I am trying to send a template email with Postmark in Node.js I created a template on the Postmark App website. I've looked through their documentation, but cannot find any way to go about sending a templated email. Documentation…
Lindsay
  • 877
  • 2
  • 12
  • 30
3
votes
3 answers

How to escape characters in part of a JSON POST request with CURL?

So, I'm trying to use a service called Postmark to send a formatted HTML email. They have some API documentation here, and they give this example on how to use CURL: $: curl -X POST "http://api.postmarkapp.com/email" \ -H "Accept: application/json"…
ralphthemagician
  • 229
  • 1
  • 3
  • 12
3
votes
1 answer

"Postmark::InvalidMessageError: Provide either email TextBody or HtmlBody or both." for a rails 3.2 app

I was reading through the Postmark documentation, saw the rails gem there (github link). I set it up according to the instructions and I ran into this message when I tried sending an email: Provide either email TextBody or HtmlBody or both. I have…
3
votes
2 answers

Postmark::InvalidMessageError when attempting to send mail

I use Rails 3 + Postmark-Rails. At first, I created account on postmarkapp.com to get my api key. I Activated my signature by email link [for example, "vitalyp@dot.com"] -- After that, I added this to…
Vitalyp
  • 1,069
  • 1
  • 11
  • 20
2
votes
1 answer

ActionMailer rescue_from failing when called from ActiveJob dispatched to Sidekiq

I use Postmark for sending email and was looking to capture Postmark::InactiveRecipientError which currently just ends up in my dead jobs in my Sidekiq queue. I found on the postmark-rails wiki, what I thought would be the correct course:…
mg87
  • 477
  • 2
  • 5
  • 9
2
votes
1 answer

Problems integrating Postmark with Symfony Mailer

I am currently struggeling trying to use Postmark with the Symfony5 Mailer Bundle. Although the documentation seems to be clear, i am unable to send any emails. My first point of confusion is the suggested DSN format for…
2
votes
1 answer

How to "await" promises from a asynchronous function in a loop / Sending E-Mails with attachment over the Postmark API

I want to send Mails via the Postmark API from my express server. I get a post-request on my express server with the following json payload: { "mail": { "from": "frommail@address.com", "to": "tomail@adrress.com", …
2
votes
0 answers

Why is our server sending multiple copies of one email?

Overview From our MVC web app we are sending emails. We send 2,000 each time, once per day. We send the emails one at a time to Postmark to process and deliver. The connection with Postmark is via SMTP which is setup in Web.Config:
amartin
  • 330
  • 2
  • 4
  • 17
2
votes
1 answer

c# How to implement disposition type (Inline //or Attachment) for PostMark provider

SMTP Provider C# Code: MailMessage Mail; Mail.Attachments.Clear(); Byte[] bytes = System.Text.Encoding.ASCII.GetBytes(strICSData); var ms = new MemoryStream(bytes); var a = new Attachment(ms, "meeting111.ics",…
V Yadav
  • 31
  • 3
2
votes
1 answer

How to create a shorter webhook API URL for Keen.io?

I'm trying to send the delivered email webhook from Postmark to Keen. When I paste the webhook URL with the API key in the Postmark admin screen form and click check it works fine. (201 status code.) But then I save it and the check no longer…
chrispa
  • 23
  • 4
2
votes
2 answers

Add support for rendering views to a rails api only application

I built an api only rails app, but since i'm using a 3rd party email service, I need to be able to render the email template into a string to pass it to the mailing service wrapper gem. So far any attempt to render templates into a string returns an…
Throoze
  • 3,988
  • 8
  • 45
  • 67
2
votes
1 answer

how to override ActiveJob to prevent serialization error?

I'm using mongoid 5.1, devise, postmark for email sending, I overrided devise method as below:- user.rb model file:- def send_devise_notification(notification, *args) devise_mailer.send(notification, self, *args).deliver_later end Now, I'm…
codemilan
  • 1,072
  • 3
  • 12
  • 32
2
votes
0 answers

Sending attachments to Postmark with Go

I was trying to implement a file uploader using DropzoneJS and writing the backend using Go (first attempt at programming with the language). I'm trying to use https://github.com/hjr265/postmark.go which appears to be Postmarks recommendation for Go…
madnazz
  • 21
  • 1
1
2
3
8 9