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
0
votes
1 answer

Metadata appears blank in postmark response to rails

I have successfully setup the postmark API in my rails dev environment and am trying to embed metadata containing record ID so I can process the record in my webhook. I receive a response from postmark into my webhook URL upon email delivery, but…
Lloydo
  • 303
  • 1
  • 8
0
votes
0 answers

Setting up mail smtp relay service to send and receive mail

I have very limited knowledge about SMTP and IMAP/POP. SMTP --> sending message, IMAP--> Mainly for receiving messages. I have a woocommerce website and i already did setup my email system to use SMTP relay using zoho. I believe zoho also provide…
Tomyhill
  • 79
  • 1
  • 2
  • 10
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
  • 81
  • 3
  • 9
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,581
  • 2
  • 20
  • 39
0
votes
1 answer

Filling Postmark template from Java

I need to send an email with the template using Postmark. Instead of using Postmark library, my project uses Feign Client with configured token and url. However, this approach makes harder to fill the template with data. How to inject data from…
Forin
  • 1,549
  • 2
  • 20
  • 44
0
votes
1 answer

MailMason create plain-text only email template

Currently, in mailmason a template with no Layout set, fills both HTML and Text versions of the email template in postmarkapp. How do I create a template in mailmason so the HTML field in postmark will be empty, and Text set? It's important for…
0
votes
1 answer

django rest-auth email confirmation with postmark

I've seen a fair bit about how to override the email templates, but they seem to mostly involve creating HTML templates and overriding the file location. I'm using postmark's templating which involves sending a post request with the email variables.…
0
votes
2 answers

getting error while viewing pdf file in an email from postmark email attachment feature

I don't know which encoding to do while sending email attachment from postmark attachments feature in the Content field. I have already tried the following method to convert the pdf file to base64 but not find…
Jawwad Turabi
  • 322
  • 4
  • 12
0
votes
1 answer

Dequeue emails in Postmark

I have a bunch of queued emails in Postmark that I would like to delete. How can I delete/dequeue emails in Postmark? I have tried searching the activity page for some sort of user interaction, but beyond listing the queued emails, there appears to…
Seph Reed
  • 8,797
  • 11
  • 60
  • 125
0
votes
1 answer

Powershell and Rest API Postmark

when I send a request through powershell to rest api Postmarkapp I have these errors When use metod get Invoke-RestMethod : Cannot send a content-body with this verb-type. When use metod post Server Error in '/' Application. The resource cannot…
0
votes
1 answer

Postmark mailing on localhost and staging problem

After I configure to use postmark service to post emails I'm facing some troubles with development and staging envs. Short explanation: portmark is working nice in the below situations with 'ok', and when there is DeserializationError it seems that…
Fillype Farias
  • 622
  • 1
  • 8
  • 20
0
votes
0 answers

How can I deliver an e-mail to only one recipient but have multiple recipients in the “To” field?

I'm trying to recreate a feature found in Microsoft Office 365. When you send an encrypted e-mail from Office 365, it looks like this in the Inbox by GMail interface. Note how the e-mail appears to be sent to multiple people, but the "Delivered-To",…
TCSoft
  • 31
  • 3
0
votes
1 answer

Email delivery service - Sender address verification process

Our product needs a Email Delivery Service Provider to help us deliver emails. We want our customers to be able to use their own emailadresses when sending emails and that makes this a bit harder. It seems that most companys verify sender adresses…
Kenneth
  • 251
  • 4
  • 6
0
votes
1 answer

How to set A Persistent header variable across email thread

I need a persisted variable(not necessarily on the headers) that can be carry over to an email thread. Using Postmark as SMTP. and set headers like the following: client.sendEmail({ "From":"test@xxxxx.com", "To": {...}, "Subject":…
Mark Ryan Orosa
  • 847
  • 1
  • 6
  • 21
0
votes
1 answer

How to write a Celery task using postmarker

I am trying to write a celery task which uses the postmarker client library to send emails. This is a simple client library that calls the postmarkapp.com API endpoint. # In tasks.py @app.task(bind=True) def send_email(...): """Sends a single…
Matt
  • 5,028
  • 2
  • 28
  • 55
1 2 3
8 9