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
1
vote
2 answers

Using Postmark with PHP

Hi I'm new to php and postmark and am trying to get a form submission set to my email. I have the email working however I can't get it to show the header("Location: thanks.php) page. Any help would be greatly appreciated.…
1
vote
1 answer

Inline image attachments with postmark api

I'm trying to use the postmark api to send an html email that has images in it. I know postmark supports inline image attachments but i don't know how to go about it. I've gone through the documentation but the example given there seems vague and i…
ss_millionaire
  • 409
  • 1
  • 7
  • 20
1
vote
1 answer

Django "cannot import name PMMail"

I'm a little stuck. I'm configuring a project in my mac to work with it (I worked on it in the past in the same computer), but had to format it. When trying python runserver it works fine, but when try to load it in browser I get this: And I get…
Sascuash
  • 2,976
  • 7
  • 41
  • 61
1
vote
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
  • 582
  • 2
  • 8
  • 25
1
vote
0 answers

Email address validator in Znarkus Postmark PHP

I'm using a Znarkus Postmark PHP class to handle mailer. POST RESPONSE: {"status":false,"validator":null,"response":true,"errors":[],"exception":"exception 'InvalidArgumentException' with message 'Reply To address \"1\" is invalid' in…
rukia_kuchiki_21
  • 1,191
  • 2
  • 15
  • 31
1
vote
2 answers

Email Attachments not working with Postmark

I am using postmark to send email from the application. Its working fine for normal emails, but the email attachments are not working. It works fine on local, as on local i have the smtp+postmark settings (as to work it on local we need to have…
Swati
  • 772
  • 8
  • 23
1
vote
1 answer

json_decode() does not work with this valid JSON string

Here is the JSON string my app is receiving from Postmark, an inbound email delivery service: { "From": "me@mydomain.com", "FromFull": { "Email": "me@mydomain.com", "Name": "Jack" }, "To": "\"test@email.mydomain.com\"…
Jack
  • 9,133
  • 15
  • 64
  • 109
1
vote
2 answers

exception_notification: smtp not working

I am using Rails 3.2.5 and exception_notification gem. In production mode, I am generally sending emails using PostMarkApp's postmark-rails gem. Initially, I got a View error from exception_notification gem stating ActionView::Template::Error (code…
Pykih
  • 2,521
  • 2
  • 24
  • 38
1
vote
1 answer

Using a node module with Meteor

I have a very simple meteor application. I want to utilize the postmark api in this application lucky for me they have a node.js module. https://github.com/voodootikigod/postmark.js I have successfully installed this module to node and can see it…
Daniel Tate
  • 1,759
  • 4
  • 20
  • 44
0
votes
1 answer

dynamic from address - postmark

I'm using Postmark to send emails. I want to be able to use if for a send to a friend form so I need the from email address to appear to be from a specific sender. It looks like Postmark only allows you to send from the address specified in the…
Mike Rifgin
  • 8,840
  • 18
  • 66
  • 108
0
votes
0 answers

How to create chat email notifications

I'm trying to find the best way to build email notifications for an app with a chat component. To give a bit of context, we have a list of occasions in our app with a chat per occasion. We would like to send email notifications to notify the user…
0
votes
0 answers

SwiftMailer for Postmark - Batch Email Sending

I built an application with Laravel 8 and currently using SwiftMailer library with drivers for Postmark - to process transactional emails using Laravel's Mailables. I would like to integrate Postmark's feature for Batch Email sending - However it…
shimsag
  • 1
  • 2
0
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
  • 161
  • 1
  • 3
  • 13
0
votes
0 answers

Laravel - Add Postmark tag into email notification before sending

Im using Postmark to send emails in my Laravel 8 app. Im looking for a way to hook into the email notification (note: this is the Laravel notification, not mail message) to add Postmark tag. Accoridng to the Laravel notification doc, Laravel fires…
Louis L
  • 63
  • 1
  • 8
0
votes
1 answer

Set Email optional preview with Postmark service

I am using Postmark to send emails, it work well. i want the ability to set the preview of the email The code that i am using is the following: var message = new PostmarkMessage() { To = EmailTo, From =…
wandos
  • 1,540
  • 2
  • 17
  • 39