Questions tagged [mandrill]

Mandrill is an API for sending transactional email. It runs on the delivery infrastructure that powers MailChimp.

Mandrill is a transactional email platform from mailchimp.com. Transactional emails are just one-off emails triggered by some action like signing up for an account or requesting a password reset.

Mandrill supports a scheduling feature, templates, and inline images and attachments.

950 questions
5
votes
1 answer

Sending email with Mandrill using PHP

I'm trying to send email using Mandrill and PHP and I can't get it to send. I've downloaded the PHP API wrapper from here:https://packagist.org/packages/mandrill/mandrill Mandrill.php is in my root and the Mandrill folder is in the same…
James White
  • 535
  • 10
  • 24
5
votes
1 answer

Mandrill: How long do I wait before assuming deliverability?

I've set up a Mandrill webhook which will update my app whenever an email hard-bounces or is rejected, so I don't keep that particular email address in my database. The way it works is this: a user gives me an address, I send him a confirmation, and…
Tomas Buteler
  • 3,892
  • 4
  • 29
  • 42
5
votes
1 answer

global_merge_vars not working

I'm sending a template email from Mandrill API like this: { "key":"xxxyyyzzz", "template_name":"coupon-purchased", "template_content":[ ], "message":{ "to":[{"email":"xxx@yyy.com"}] }, "merge":true, …
5
votes
1 answer

DKIM for Mandrill on Amazon's Route 53

I am trying to set up a DKIM record on Amazon's Route 53. I just choose to add TXT record with name like this: mandrill._domainkey.domain.com and the value is: "v=DKIM1;…
Petar Vasilev
  • 4,281
  • 5
  • 40
  • 74
5
votes
1 answer

Rails with Heroku not sending Mandrill emails

I am starting a rails app and would like to use Mandrill to confirm Devise sign up and for other features in the future. Yesterday it was working sometimes on local so I thought maybe I would try on Heroku. When using Heroku's Mandrill add-on it…
arduima
  • 413
  • 6
  • 13
5
votes
1 answer

Mandrill: Please enter an array

I can't understand why I get an Invalid array! response = Unirest.post "#{@@endpoint}/messages/send.json", headers:{ "Accept" => "application/json" }, parameters:{ :key…
sparkle
  • 7,530
  • 22
  • 69
  • 131
5
votes
1 answer

MailChimp (Mandrill) for .NET why email includes Image?

I'm using MailChimp for .NET from this nuget https://www.nuget.org/packages/mcapi.net/1.3.1.3 and tried sending emails. But the email I received include image (unseen image) even if I'm just sending simple html. Has anyone encountered it? How to get…
Jobert Enamno
  • 4,403
  • 8
  • 41
  • 63
5
votes
1 answer

What are the default merge tags in Mandrill?

I've searched the Mandrill docs, KB and Google for a list of the merge tags that are always available, but can't seem to find just a simple list for the API option. I created a template in MailChimp then sent it to Mandrill, but it appears that not…
Matt R. Wilson
  • 7,268
  • 5
  • 32
  • 48
5
votes
2 answers

Mandrill-api Excon::Errors::SocketError

I am using Mandrill-api in Ruby to programmatically send out transactional email. I have (more or less) the following line in my rails app, mandrill ||= Mandrill::API.new const(:API)[:MANDRILL_APIKEY] ... (constructing the message, content,…
Jimmy Chu
  • 972
  • 8
  • 27
5
votes
2 answers

Bundler could not find compatible versions for gem "excon" for gem mandrill-api

I'm getting this error when trying to install bundle. I have both versions '0.15.4' and '0.25.1' of gem excon in my gemset. How can I fix this? Bundler could not find compatible versions for gem "excon": In Gemfile: mandrill-api (>= 0) ruby…
vitthal-gaikwad
  • 1,184
  • 11
  • 13
5
votes
2 answers

Validate Mandrill's X-Mandrill-Signature

I'm developing a Node.js app and I'm struggling validating the Mandrill Webhook request. As stated here http://help.mandrill.com/entries/23704122-Authenticating-webhook-requests it should be something like this in PHP: /** * Generates a…
Alexander
  • 1,495
  • 2
  • 19
  • 24
5
votes
1 answer

"Bytes to be written to the stream exceed the Content-Length bytes size specified" with UTF8 encoded json

I'm facing encoding problems while sending a JSON object to Mandrill API. While writing to a streamwriter with UTF8 encoding the following exception is thrown: "Bytes to be written to the stream exceed the Content-Length bytes size specified." and…
Carlo
  • 61
  • 1
  • 1
  • 3
5
votes
1 answer

Mandrill API Templating

I'm using Mandrill's Ruby API Gem and have the follow simple template for testing:

testastic





Jayson Lane
  • 2,828
  • 1
  • 24
  • 39
4
votes
1 answer

flutter - getting Failed to handle method call and already_active exception using image_picker

I'm using image_picker flutter package but when I use it like the defined example, it does not work. if I call the function for the first time: ImagePicker.pickImage(source: ImageSource.camera, maxWidth: 600); I get this error and nothing happends:…
Moein Hosseini
  • 1,514
  • 3
  • 15
  • 33
4
votes
1 answer

mandrill into Laravel not working

The code that I'm…
Suba Sah
  • 157
  • 8