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

Sending a PGP email with nodemailer-openpgp is encrypting properly but causing an SMTP API Error

Attempting to send a pgp encrypted email via nodemailer-openpgp Sending via Postmark triggers this SMTP APi Error ErrorCode: '300', Message: 'Provide either email TextBody or HtmlBody or both.'. Here is the function that sends the email async…
dolokhov
  • 43
  • 1
  • 1
  • 6
1
vote
3 answers

Is there a version of postmark java client library which uses jersey 1.x instead of 2.x?

I have a RESTful web service application in java deployed on google app-engine which uses jersey 1.18.6. I want to use postmark java client to send transactional emails from it. When I integrated it, i was seeing the following…
Archit Sinha
  • 775
  • 1
  • 8
  • 33
1
vote
0 answers

Email send through Postmark API send ok but is not received by receipt

I use curl and Postmark API to send an email: curl "https://api.postmarkapp.com/email" \ -X POST \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "X-Postmark-Server-Token: server token" \ -d "{From:…
Papaya Labs
  • 1,079
  • 9
  • 11
1
vote
0 answers

Email send through Postmark is not received by user

In our application email is send to users using postmark service, but user says that he dint receive any emails. Is there any way to know why these emails were not received by the end user? I checked the Junk folder its not there in that and the…
1
vote
0 answers

Postmark SendMessageAsync Message not sending Email c#

Here is my Code snippet to send email using postmark public async Task SendEmail(CustomMailMessage mailMessage) { HeaderCollection headers = new HeaderCollection(); if (mailMessage.Headers != null) { var items =…
Ajay Kumar
  • 11
  • 5
1
vote
1 answer

how to convert the content in to HTML Format Postmark

i tried like Below to send content to Postmark email template var username = "Dear user,

       Thank you for using our product.   
Note :newly Features introduced
1.A
2.B.
3.

"; …
sandeep
  • 89
  • 9
1
vote
1 answer

Rails 4 - Postmark integration

I'm trying to figure out how to send transactional email from my Rails 4 app. I have found tutorials for the postmark gem, but I'm struggling to close the gaps between what's assumed in the tutorials (where to do the suggested steps!) and what I…
Mel
  • 2,481
  • 26
  • 113
  • 273
1
vote
1 answer

PHP Postmark Invalid argument supplied for foreach() in generated file

first time questioning so go easy on me and if you need anything else, just ask For a job interview i need to create a small mailing app using PHP and Postmark. The ui is ugly, but its not supposed to be pretty, my HTML layout skills have already…
1
vote
1 answer

Postmark/Guzzle InvalidArgumentException: Invalid resource type: boolean

I keep getting an InvalidArgumentException: Invalid resource type: boolean from some emails being sent via Postmark. Some are working, others aren't. I don't see anything different between the emails that are working and those that are having…
Karl Wilbur
  • 5,898
  • 3
  • 44
  • 54
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
  • 429
  • 2
  • 7
  • 22
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
  • 3,661
  • 10
  • 46
  • 65
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,279
  • 3
  • 17
  • 34
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
  • 842
  • 10
  • 26
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,615
  • 18
  • 72
  • 112
1 2 3
8 9