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
2
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
  • 219
  • 1
  • 3
  • 12
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
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
  • 798
  • 6
  • 9
1
vote
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", …
1
vote
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
  • 2,765
  • 2
  • 27
  • 71
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
  • 2,451
  • 4
  • 24
  • 32
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
  • 532
  • 1
  • 5
  • 16
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
  • 625
  • 1
  • 6
  • 26
1
vote
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
  • 11
  • 2
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
  • 3,699
  • 13
  • 71
  • 194
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
  • 4,826
  • 2
  • 36
  • 45