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

The merge tags in mandrill don't work in codeigniter

I use Mandrill plugin for Codeigniter. I created HTML template through Mandrill account, named fess1 with merge tag FNAME, after I published it. Example: ...

Hi *|FNAME|*,

.... Now I try to send mail from codeigniter…
Maxim Shoustin
  • 77,483
  • 27
  • 203
  • 225
0
votes
1 answer

Are Shared hosting IP OK for Mandrill API Requests?

Are Shared hosting IP OK for Mandrill API Requests? I'm trying figure out if a Nightmare is true or simply pure work overload. :) Mandrill comes with a Shared and Dedicated IP Options for sending out emails. What I fully 100% agree with. But do I…
sumatrantiger
  • 75
  • 1
  • 1
  • 3
0
votes
2 answers

How to replace Mandrill's *| |* symbols?

Is there any chance to replace the mandrill's *| |* symbols? The CMS i'm using (MODX) has its own symbols to enclose the tags, eg: [[+ ]] The case is that I also have "read on web" link, where the page on the web needs to generate dynamic content…
goldsky
  • 801
  • 7
  • 11
0
votes
2 answers

Use Mandrill API in Google Apps Script

I want to use mandrill email sending api in my google apps script. In google script I have to use JSON code but I am not getting how I will use it. I am very new in Google apps script. var m = new mandrill.Mandrill('XXXXXXXXXXX'); var from_email =…
Aakanksha
  • 199
  • 1
  • 3
  • 15
0
votes
1 answer

change mandrill template dynamically using php

I am using mandrill app to send emails from my website. I know how to send template using Mandrill. I want to change template dynamically. I don't know how to do it. On this Site they mentioned to use |---| to change template dynamically. Here they…
Aakanksha
  • 199
  • 1
  • 3
  • 15
0
votes
0 answers

Modifying header variable in webmatrix/razor

I have a working header, below, which adds SMTP headers to outgoing emails: var header = new[]{"X-MC-Template:RegisterTemplate", "Reply-To:myname@mail.com"}; I want to create a similar variable using the below code: var tag =…
Gavin5511
  • 791
  • 5
  • 31
0
votes
1 answer

how do you send saved template in mandrill?

So I'm looking at the Mandrill documentation, and I'm a little confused. All the examples for sending a templated email include the content of the template in the call. I thought the point of saving templates was so that you could save the template…
0
votes
1 answer

Mandrill only recognize a few of my merge tags?

I am using the Mandrill PHP-API Class to send bulk mail to my clients. And was wondering why dose Mandrill only recognize a few of my 'recipient_metadata' Merge Tags? The Mandrill Api Request is : { "message": { "from_email": "me@example.com", …
TinyKot
  • 3
  • 2
0
votes
1 answer

Zend framework - PHP mailchimp is never working any reason why its not doing anything at all?

Why mail chimp is not working in ZF1 and ZF2 with following function? class TestController extends Zend_Controller_Action { public function indexAction() { echo $this->Mailb( "from@gmail.com", …
user285594
0
votes
2 answers

Add PHP variables to Mandrill template

I just made the switch from the PHP mail function to Mandrill, but Mandrill sees the PHP in the email as HTML and prints the variables like this: Does anyone know how to add PHP to the HTML template?
Christian
  • 735
  • 3
  • 10
  • 29
0
votes
1 answer

Unknown Method Error - Code: -99 on Mandrill users/ping.json

I have the following code: var temp = { 'key': '***.....zWw' }; $.ajax({ url: 'https://mandrillapp.com/api/1.0/users/ping.json.', type: 'POST', data: temp, success: function(result) { console.log(result); } }); And this is the…
Andrew Walker
  • 492
  • 1
  • 5
  • 23
0
votes
1 answer

jquery sending email with mandrill from an array

I am struggling with this desperately. I want to collect an array of email addresses from a checkboxed table (some checked but not all) and pass them to Mandrill JavaScript code to send. There are 2 issues here: How to send multiple emails in…
user1903663
  • 1,713
  • 2
  • 22
  • 44
0
votes
1 answer

Gem not initializing when running job from worker?

I am using the Mandrill api gem to send scheduled emails with the delayed jobs gem. When the delayed job is executed by the worker the job is crashing at the line which creates the mandrill message with the following error: DailyMailJob failed with…
startupsmith
  • 5,554
  • 10
  • 50
  • 71
0
votes
1 answer

passing array from jquery to mandrill api to send mail

I have an array of email addresses, like so: var to = '[user1@gmail.com,user2@gmail.com,user3@gmail.com]'; I am passing it to a javscript script to send mail via the Mandrill api,as follows: function log(obj) { …
user1903663
  • 1,713
  • 2
  • 22
  • 44
0
votes
2 answers

Mandrill validation in ruby, lost in translation between php and ruby

I'm trying to follow the steps Mandrill has outlined here http://help.mandrill.com/entries/23704122-Authenticating-webhook-requests in order to validate incoming requests. I've setup a test requestb.in with the url seen in the code. I want this…
agarrow
  • 457
  • 2
  • 7
  • 17