132 questions
0
votes
1
answer
57
views
Image tag not rendering on Gmail but will render on Outlook
Using laravel, I have a method in my controller that is taking the base path of a .png file and base64 encoding it before sending it to my blade template. The image is able to be rendered on outlook ...
0
votes
1
answer
64
views
Only first email sending with booking form
I have a website with a 3 stage booking form. Each stage should send 2-3 emails via Postmark.
It seems to work in development but when pushed to Netlify only 1 email is sent on each stage as shown ...
1
vote
0
answers
29
views
Is it possible to send a pdf file using Postmark using NodeJs
Is there possible way to send an attatchment, pdf or image using postmark using postmark?
So currently, I'm only using postmark for sending email, but is it possible to send a custom pdf using ...
1
vote
1
answer
73
views
When sending an iCalendar event, how do I get it to appear in the body of the email?
I'm trying to send an iCalendar event through email and have it appear in the body of the email in Outlook. I'm using PHP and Postmark and Spatie iCalendar generator.
This is the code so far:
public ...
0
votes
1
answer
279
views
Laravel 11 Mail sending to only first recipient in a loop / CC adding only X-CC header
This is using Laravel 11. I have two issues, happy to have either fixed as they’d both resolve the problem!
I’ve a loop of email addresses to send a Mail to but the first recipient is used for every ...
1
vote
1
answer
666
views
how to check activation of email before sending it in Postmark
I create a project using Golang. and I have function to send emails that use Postmark . But I got this error "422 You tried to send to recipient(s) that have been marked as inactive. Found ...
-1
votes
1
answer
221
views
Sending email with API in node js
I've been trying to create an web application which sends welcome email to its new subscribers. from over one week i am just stuck at one problem, my console doesn't show any output, no success or ...
1
vote
1
answer
130
views
Sending invitation links to non-registered users on behalf of a registered user
I have a web app where a registered user can create an appointment and then add a list of contacts that they wish to invite to that appointment. These other users are not necessarily registered users ...
1
vote
0
answers
796
views
How to put a conditional in a scope on mustachio for postmark template
I can't find a solution for this problem I have a template like this (all my trades are managed with balises like this in my template):
{{french}}Bonjour{{/french}}{{english}}Hello{{/english}}
I want ...
0
votes
0
answers
67
views
How to get custom variables when using a custom Email Transport with CakePHP 4, for sending bulk mails with Postmark
I want to send bulk mail (newsletters) with the Postmark Batch API. Postmark Batch API requires me to combine up to 500 mails per request.
Therefor I have created an custom NewslettersTransport.php ...
0
votes
2
answers
381
views
Postmark - Sender signature confirmation email bounced
We have a service that helps our customers to onboard and manage their customers. When they create an account with us, we create a sender signature in postmark and through postmark send a confirmation ...
1
vote
1
answer
772
views
Attachment limit size by official Postal Service like "Postmark"
I have connected my react app with my Postmark server to receive webhooks, but attachment limit size is only 10MB, in my case I would need more than that, at least around 20MB or bigger.
Does anyone ...
0
votes
1
answer
172
views
Why does my Firebase/Postmark email despatch function fail to deploy?
Firebase deployment of my function fails with the following error:
"Function failed on loading user code. This is likely due to a bug in the user code."
Here's the function code:
const ...
1
vote
1
answer
876
views
Text with dot automatically converting to URL
I am using postmark to send emails by providing HtmlBody.
My text contains dot like this
Hello user.com
When mail is sent, user.com converts to URL.
Is there any way to prevent such automatic ...
0
votes
0
answers
323
views
How can I truncate the HtmlBody when sending emails through postmark
I'm using postmark to send emails in my rails application where the email content is auto generated. The thing is that in some cases I getting this error from postmark.
Postmark::...
1
vote
2
answers
1k
views
How to fix OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=error: no protocols available
I'm getting this error when triggered by mail using the deliver-later method using the postmark-mailer gem in Rails.
2022-09-13T12:03:19.061Z 45075 TID-osgak45wb PostmarkMailer::DeliveryJob JID-...
0
votes
1
answer
778
views
Postmark Webhook Signature Security
https://postmarkapp.com/developer/webhooks/webhooks-overview
https://<username>:<password>@example.com/webhook
Looking through the Postmark API, there does not seem to be any information ...
-1
votes
1
answer
1k
views
How to Parse a incoming email and send the parsed data as POST request to a endpoint on localhost?
I have an email for my application, and I want to parse the incoming emails coming to the mail and send the parsed data as a POST Request to an endpoint in localhost(i.e..a servlet). I want to send it ...
0
votes
2
answers
653
views
Nested variables not rendering in email template using mustache
So I am having trouble getting the variable values to be shown in an email template. The 3rd party email templating provider is Postmark and it uses Mustache. My template is set up like this (I have ...
0
votes
1
answer
1k
views
Next-Auth EmailProvider and FaunaAdapter "Unable to Sign In"
I've followed the next-auth docs to hook up its EmailProvider and FaunaAdapter in a brand new Next.js project, but I am unable to sign in.
My dependencies:
"@next-auth/fauna-adapter": "^...
2
votes
1
answer
779
views
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 ...
0
votes
1
answer
431
views
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 ...
0
votes
0
answers
533
views
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 ...
2
votes
1
answer
660
views
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 ...
1
vote
1
answer
630
views
Rails sending Email with Postmark with message stream configuration
I am sending some email messages using the Postmark API with the postmark gem.
gem 'postmark-rails'
I want the messages to use a specific Message Stream. I am trying to do it using the action mailer ...
-2
votes
1
answer
1k
views
Sending email via postmark on symfony with different message streams
As my application has evolved, I've needed the proper way of sending an email to a bulk amount of users. Currently our transactional emails work well, and this is the structure for them.
.env file:
###...
2
votes
1
answer
623
views
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": "...
2
votes
0
answers
1k
views
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 ...
6
votes
1
answer
3k
views
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 ...
0
votes
0
answers
69
views
Laravel - Add Postmark tag into email notification before sending [duplicate]
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 ...
0
votes
1
answer
409
views
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()
{
...
1
vote
1
answer
885
views
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 ...
0
votes
1
answer
401
views
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 ...
0
votes
1
answer
236
views
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 ...
0
votes
1
answer
424
views
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 ...
0
votes
2
answers
714
views
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 ...
0
votes
1
answer
1k
views
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 ...
0
votes
1
answer
824
views
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
...
0
votes
1
answer
1k
views
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 ...
1
vote
1
answer
225
views
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 ...
3
votes
1
answer
3k
views
How to send customize e-mail with Firebase cloud functions
I want to send a mail once a user is created with a firebase cloud functions, using nodemail and postmark.
I followed this tutorial : Tutorial link from Dave Martin
But keep getting this error:
...
3
votes
1
answer
132
views
Mail going to recepient spam folder
We are using Post Mark API for sending mails to recipient for every action performing in our app.We are using VM file as the template for sending mails.Our clients are repeatedly saying that mail was ...
3
votes
2
answers
2k
views
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,...
0
votes
0
answers
544
views
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 ...
1
vote
0
answers
828
views
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.'.
...
1
vote
3
answers
192
views
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, ...
10
votes
2
answers
4k
views
DMARC/SPF configuration error
I have a domain registered at domains.google.com that I use with a G Suite account and also to send email from SES and mailchimp.
My DNS records look correct to me (Mailchimp instructions):
@ TXT &...
2
votes
1
answer
1k
views
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, "...
2
votes
1
answer
215
views
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.)...
0
votes
1
answer
330
views
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 ...