Questions tagged [mailgun]

Mailgun is an online service that provides a set of APIs for sending, receiving, tracking and storing email.

Mailgun is an online service that provides a set of APIs that allow you to send, receive, track and store email.

Features:

  • HTTP API or SMTP interface.

  • Server-side MIME assembly. No libraries required.

  • Live logs and webhook event notifications.

1557 questions
0
votes
1 answer

Double Quotes in Inline CSS in HTML Email are getting escaped

I have setup a basic email marketing program using php based on the mailgun api. Now whenever I send emails from the program, all the double quotes in the inline CSS of the HTML email get escaped. So I end up with an ugly html email with the table…
Dexxterr
  • 59
  • 8
0
votes
1 answer

How to configure and use Mailgun's SDK with composer-php?

I installed Composer and a SDK for Mailgun's service. These are the steps i followed: # current directory cd ~ # Install Composer curl -sS https://getcomposer.org/installer | php # Add Mailgun as a dependency php composer.phar require…
Andres SK
  • 10,779
  • 25
  • 90
  • 152
0
votes
1 answer

Mailgun, Post Incoming Data in App

Having trouble accessing POST params using Mailgun. Here's my route.rb and incoming_controller.rb files. Basically, I want to update my view with the data from the incoming emails. post :incoming, to: 'incoming#create' Controller class…
user3465296
  • 145
  • 1
  • 12
0
votes
1 answer

Laravel CSRF Protection and Mailgun

Mailgun is suppose to send a post request to laravel application, everytime it sends such request Laravel stops the request with the error throw new Illuminate\Session\TokenMismatchException; I can't figure out a method to solve this issue? I am…
Mohammad Abu Musa
  • 1,117
  • 2
  • 10
  • 32
0
votes
2 answers

How to specify HTTPBasicAuthFilter to Play's WS call?

I'd like to make a call to Mailgun service with Play's WS api. Mailgun requires a API key sent for Authentication, and per their 'jersey' client example, they specify this API key as 'HTTPBasicAuthFilter' with the client, as below: public static…
Veera
  • 32,532
  • 36
  • 98
  • 137
0
votes
2 answers

Campaign Events API Endpoint

I'm trying to get all events for a specific campaign since a particular datetime. The API is returning the same results for any begin value I specify (past or future) and I've sent 2000+ emails (with open and click tracking enabled) over the past…
Greg
  • 8,574
  • 21
  • 67
  • 109
0
votes
1 answer

Mailgun API call "Mailing list member not found"

I get the "Mailing list member not found" when I call a DELETE, I then tested a PUT, to try an update the subscription setting, and I get the same message. But when I try to add someone with a POST to the list with the same email address I get a…
ransems
  • 641
  • 7
  • 19
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
1 answer

how can i post data using Mozilla rest add-on using mailgun api

I'm using this Mozilla ADD-ON to post the data in mailgun API RestClient Content-Type:application/json URL I'm using https://api.mailgun.net/v2/sandbox42924.mailgun.org/messages Json Data I'm posting [ { "from": "Kaushik…
Kaushik
  • 2,072
  • 1
  • 23
  • 31
0
votes
1 answer

How can I use mailgun to extend CEmailLogRoute in Yii?

I am using the Mailgun Yii extension(https://github.com/baibaratsky/php-mailgun) and am able to send a test email from inside the 'views/site/SiteController.php' file using the following code: $message = Yii::app()->mailgun->newMessage(); …
zeckdude
  • 15,877
  • 43
  • 139
  • 187
0
votes
1 answer

Unsubscribes from mail gun

Helpful api instructions from the great mailgun api instructions say this: GET /[domain]/bounces Fetches the list of unsubscribes. when I give it: https://api:key-[my api key here] @api.mailgun.net/v2/[my domain here]/bounces This works great but…
0
votes
1 answer

How Get parameter that has been posted by HTTP POST

I am using webhooks inside the mailgun API in my C# web app. http://documentation.mailgun.com/user_manual.html#webhooks In webhooks I have to provide a URL in mailgun control panel then mailgun will make an HTTP POST to my URL and send some…
Alma
  • 3,780
  • 11
  • 42
  • 78
0
votes
1 answer

C# Appharbor and Mailgun Not Sending Email

I am sending an email in my app using the Mailgun nuget package. I followed this post http://support.appharbor.com/discussions/problems/906-mailgun-error-smtp-client as my starting point. This is my call to the API using the client string domain =…
jamesamuir
  • 1,397
  • 3
  • 19
  • 41
0
votes
1 answer

Trying to call parse.com cloud function using maigun route action

I'm trying to use a parse.com cloud function in a mailgun route action (forward). My action is like this (with my app id and JS key included of course): forward("https://myAppId:javascript-key:myJSkey@api.parse.com/1/functions/hello") In the mailgun…
Greg Wilson
  • 2,380
  • 2
  • 15
  • 14
0
votes
1 answer

Php Curl add string file as a post field

I am using mailGun web API and ran into the issue of adding inline files. Our software creates an image and passes it around as a string. I want to inline that image The problem that I have is that php curl takes in a file pointer, and not an…
Jdahern
  • 1,196
  • 9
  • 14
1 2 3
99
100