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

How to send templated emails?

How does one send a templated Postmark message on ASP.NET? I'd imagine it would be done in this way: TemplatedPostmarkMessage message = new TemplatedPostmarkMessage { From = "demo@demo.com", To = "someone@else.com", TemplateId = 1738, …
Sergey Smirnov
  • 303
  • 4
  • 11
0
votes
1 answer

Postmark issues - no method error

I'm trying to integrate a mailer into my application. I need to send a transactional e-mail when a new order is placed. I keep running into a no method error when passing the recipient to the mailer. This works fine when I define the recipient…
PSCampbell
  • 858
  • 9
  • 27
0
votes
1 answer

Postmarkapp sending email using template PHP class

I am trying to send a email using postmarkapp api in php, I have managed to get it to send plain emails. I have uploaded the class to the same directory as index.php but the 'use' function seems to give me a error which is out of my…
dyllib
  • 7
  • 5
0
votes
0 answers

Email form submit shows email log

I recently completed my 1.0 version of my website and now that I uploaded it to dreamhost’s server, I’m having issues submitting the email form. When I host it locally, everything goes through with no problems. However, when on the server, it…
0
votes
1 answer

cakephp send batch email with dynamic content

I had a strange problem with email sending through cakephp and postmark. I have installed postmark-cakephp library in my cakephp application. I'm able to send email to single user and able to send email to multiple users with same email content…
Buddy
  • 331
  • 3
  • 10
0
votes
1 answer

POST request working on localhost but not on azure

I am new to microsoft azure, but good with web api. I have created web api services, and able to test it from postman tool when it is on localhost. Now I have uploaded my services on azure and now I am not able to call it from postman tool. Azure…
Keval Patel
  • 925
  • 4
  • 24
  • 46
0
votes
1 answer

SSL error when sending PostMark mail with Devise

I have an app running Rails 4.2.0, Devise 3.4.1 and the latest version of the postmark-rails gem. At first sending a reset password mail seemed to work fine, but I never received the mails. Then I changed config.action_mailer.raise_delivery_errors…
0
votes
1 answer

Where to put mailer class in my Ruby on Rails app?

I added postmark to my Ruby On rails app. I followed the steps from the page https://devcenter.heroku.com/articles/postmark#sending-emails-in-ruby-on-rails-3-x . Now I need to add the following code: class SuperMailer < ActionMailer::Base def…
christegho
  • 184
  • 12
0
votes
1 answer

Postmark - Not able to attach PDF and Image from saved location path in Symfony2

I am saving an Image and PDF file which was uploaded by user in one of the local path. And now I want to attach those PDF and Image file when mailing[Mailing - Using POSTMARK API]. But its not getting attached. The following is the code that I am…
Channaveer Hakari
  • 2,769
  • 3
  • 34
  • 45
0
votes
1 answer

ActionMailer.deliveries is always an empty array

I am using the Postmark gem for rails and writing Rspecs tests to make sure the emails are actually being sent when the form is valid. I want to check that ActionMailer::Base.deliveries.last.to matches what I put in the contact form I'd like to…
springloaded
  • 1,079
  • 2
  • 13
  • 23
0
votes
1 answer

Postmark Outbound Email Rails 3

I have am practicing by making a wedding site. Unfortunately, I have not been able to get my emails to send to the guests who've RSVP'd. I am not sure what should follow :to => Rsvp_Mailer.rb class RsvpMailer < ActionMailer::Base def…
0
votes
1 answer

Using Postmarkdown gem but already have post model

I'm trying to add a simple blog to my existing website using the Postmarkdown gem. Unfortunately, I already have a Post model so postmarkdown is conflicting with that namespace How can I tell postmarkdown to use a different name like BlogPost or…
Brian
  • 285
  • 2
  • 21
0
votes
1 answer

An email service that offers imap access as well as sending?

I have been hunting for some time now for a service that both allows sending of messages and receiving of messages in a conveniently wrapped solution such as MailGun, Postmark, SendGrid and others. So far I have not been any "developer friendly"…
ylluminate
  • 12,102
  • 17
  • 78
  • 152
0
votes
0 answers

forgot login password working locally but not on live site

once I push to heroku I cannot get the password reset to work.......using devise and postmark my devise.rb file: config.mailer = "UserMailer" # mailerCLASS development.rb /production.rb ActionMailer::Base.smtp_settings = { :port =>…
westman2222
  • 663
  • 1
  • 12
  • 30
0
votes
1 answer

postmark app with devise - registration and forgot password emails

I cannot get postmark to handle registration and forgot password emails: user_mailer.rb class UserMailer < ActionMailer::Base include Devise::Mailers::Helpers default from: "donotreply@barnpix.com" def confirmation_instructions(record) …
westman2222
  • 663
  • 1
  • 12
  • 30
1 2 3
8
9