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

learn more… | top users | synonyms

0
votes
0answers
13 views

Libraries to parse email into json, like what mailgun is doing

I'm looking for library that can parse email content into a json (or any structured data format). I know there are a number of services like mailgun providing this but I prefer to use my own email ...
0
votes
0answers
38 views

How to send an email on a button click with jquery, Parse, mailgun?

I want a mail to be sent to the user when a button is clicked on a webpage. Is there a way to achieve this using with jquery, Parse, mailgun? From Parse console I can invoke Parse.Cloud function ...
0
votes
0answers
45 views

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 ...
0
votes
0answers
30 views

Processing attachments with Heroku and Mailgun Routes

My webapp is a Ruby on Rails application deployed to Heroku. I use Mailgun Routes to forward email to my web application. The documentation for Mailgun Routes is here ...
1
vote
1answer
78 views

Debugging 500 on incoming Mail on Heroku from Mailgun

I'm trying to debug a view which gets an incoming mail from Mailgun to a Django installation on Heroku. The view itself is directly taken from the Mailgun docs and if I manually call the URL then I ...
2
votes
1answer
135 views

Sending Mailgun Inline Images in HTML using Python Requests library

I am having trouble working out how I can send multiple inline messages using the Mailgun api, from a Python app using the requests library. Currently I have (using jinja2 for templates and flask as ...
0
votes
1answer
177 views

Emails not sending when using Flask-Mail with Heroku and Mailgun

I have been writing a simple app to test how to send emails via an SMTP method (needs to be SMTP to be portable to different SMTP services) using Flask-Mail. For this I am trying to use Mailgun ...
0
votes
1answer
123 views

Can I get the incoming message by using Mailgun?

A use Mailgun to send b a email, after b recieve the email and reply to a.If I want to track the email comming from b, How I can get the email? Here is the code: 1.sendmail.py from smtplib import ...
0
votes
1answer
154 views

Modify Javascript/PHP sendEmail function to use Mailgun HTTP POST

I have a sendEmail function as part of a larger php script that I got online and I need to modify it to use my new Mailgun account. I am rather new to PHP and even newer to mail servers and the like ...
1
vote
0answers
35 views

Is Mailgun scheduled via cron jobs compatible for a site with a dynamic IP? [closed]

We plan to automatically send daily emails based on cron job criteria from our site built in Drupal 6 and hosted on a Rackspace cloud site using dynamic IPs. To avoid being labeled as spam, we need ...
0
votes
1answer
103 views

How to receive the emails using mailgun in node.js

In my application im using mailgun module to send and receive emails using node.js.I don't know how to receive the incoming emails.I created route to receive the incoming email.but its not working.
0
votes
1answer
109 views

MVC4 Mailgun delivered webhook

I'm having an issue making use of the Mailgun delivered webhook, it can be found here: http://documentation.mailgun.net/user_manual.html#events-webhooks, look for "Delivered Event Webhook" I am ...
0
votes
1answer
66 views

mailgun not sending data to the given URL

I have created an account on mailgun. I sent one mail from my email address to say: mgtest1@my_domain_name.mailgun.com I have configured the account to forward all mails to ...
0
votes
1answer
139 views

How can I parse the email using Mailgun?

by refering this article, I tried to parse the email, but i am failing to do it. I have created free-account on mailgun, created domain, mailbox, etc. I sent one mail from my personal email ID to ...
2
votes
1answer
160 views

Where is the RestRequest class?

In the C# tab of the getting started of maingun API, I find the following code. public static RestResponse SendSimpleMessage() { RestClient client = new RestClient(); client.BaseUrl = ...
0
votes
0answers
111 views

Mailgun, Groovy HTTPBuilder and problems with HTTP Basic authentication

Looks like HTTPBuilder's behavior goes wrong when the server / api endpoint does not give a proper response. Mailgun's API does not respond 401, but instead gives something else. (Correct me if I'm ...
1
vote
2answers
306 views

Mailgun Sent mail With attachment

I am facing issue when mail having attachment sent using mailgun. If anyone has done this thing please reply. This is my code... $mg_api = 'key-3ax6xnjp29jd6fds4gc373sgvjxteol0'; $mg_version = ...
1
vote
1answer
75 views

How to reject an email using mailgun?

Does anyone know how to reject an email received through mailgun (mailgun.com)? As a comparison, a similar service, cloudmailin allow you to return a status code of 404 or 403 to reject an email, and ...
0
votes
1answer
436 views

How to attach files to POST request to Mailgun's API using Node.js and the Request library

I'm writing some code to send emails with attachments through the Mailgun email service. They give the following example in their API docs using CURL and I need to figure out how to do the same thing ...
0
votes
1answer
205 views

Using the Mailgun HTTP api from Rails3

We are working on changing a Rails 3.2 app to use the Mailgun http api for handling email campaigns. Currently we are using ActionMailer for building out our templates and sending over smtp but since ...
1
vote
0answers
80 views

Make email public with url

It might not be an email integration problem but I would like to get solutions on it using various software available on internet or programming it using API. Task: I send money transaction ...
0
votes
3answers
244 views

Sending an email using MailGun on AppHarbor

I'm trying to send a simple email to my users using AppHarbor and the MailGun addon. I also installed the MailGun NuGet package to send email easier from my C# code. I get the following error: ...
1
vote
1answer
260 views

Flask on Heroku with MailGun config issues

I'm having issues with my email getting to where it needs to be. I've set up the config file of my Flask app on Heroku like so: class ProductionConfig(Config): DATABASE_URL = 'postgres://stuff' ...
2
votes
1answer
350 views

Saving the information emailed and processed via Mailgun into my app

I have set up Heroku & Railgun in order to be able to take the content from emails and store it. I've got it to the point that when emails are sent to mailgun, they are forwarded to my app and ...