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
0 answers

mailgun posts to django api timeout randomly

I have a python/django app that accepts post request from MailGun whenever we receive an email. Somewhat randomly the posts are timing out, sometimes multiple times, and the emails are getting delayed, sometime ten minutes, sometimes up to an…
user3499275
  • 207
  • 3
  • 9
0
votes
1 answer

mailgun configuration slight issue with TXT record

I am attempting to set up mailgun on my server. i am editing the DNS records through whm. One record is causing me issues "v=spf1 include:mailgun.org ~all" I have set this to a TXT record - but if I don't add quotes around the record it gets…
GrahamTheDev
  • 22,724
  • 2
  • 32
  • 64
0
votes
2 answers

Mailgun Get Bounces

Can I use to get bounces for the current date, based on the date? GET /domain/bounces/date or GET /domain/bounces/created_at Is this possible? public static IRestResponse GetBounces() { RestClient client = new RestClient(); …
0
votes
1 answer

Setting up a simple email alias to forward to 15 people

Short question: Is there a way to reliably deliver emails using mailgun routes without getting this error message: Failed: redacted@yahoo.com → redacted@gmail.com 'Re: Sample Subject Line' Server response: 550 550 5.7.1 Unauthenticated email from…
Colorado Techie
  • 1,302
  • 1
  • 13
  • 21
0
votes
2 answers

Laravel 4 Mail - failed SMTP on server, switching to mail method

This is quite strange as email sending using my Gmail SMTP server works in my localhost, but when I deployed it on a VPS, it wouldn't work at all. I can't find any issue as to why this is happening, the configuration looks normal (SSL port 465,…
user3583721
  • 327
  • 2
  • 4
  • 14
0
votes
1 answer

Meteor Mailgun response to emails not going to "from" address

I have the following Meteor code, with Meteor's default Mailgun SMTP settings: Email.send({ to: "customer@gmail.com, from: "company@gmail.com", replyTo: "company@gmail.com", subject: 'Test', text: "Test" }); The…
maxko87
  • 2,892
  • 4
  • 28
  • 43
0
votes
1 answer

Mailgun and Laravel returning T_Double_Arrow error

I am trying to get Mailgun to work as my email provider. By adding the services.php page into app/config and filling in the credentials, I'm left with this: array( 'domain' => 'domain.com', 'secret' =>…
user860511
0
votes
1 answer

Can't log POST data from Mailgun PHP

I'm currently trying to use Mailgun's webhooks to retrieve email, but I'm having a few problems. My PHP code is currently set up to grab any post data and write it to a txt file so I know that everything is definitely working, but nothing shows…
CheckeredMichael
  • 571
  • 8
  • 30
0
votes
1 answer

Trying to figure out how to send email straight from my iOS app? Mandrill or Mailgun Options

Im trying to figure out how to implement a way to send an email straight from within my app to my email when the user submits. Essentially the user is filling out a brief form with his/her info/descriptions and I would like to take all the completed…
mohit
  • 1
  • 1
0
votes
3 answers

Mailgun webhooks and classic asp

I've set up a URL for a web hook in the Mailgun control panel and have set up a script to append a txt file with the HTTP Post from Mailgun to the URL when a bounce occurs. I've tested it by submitting a HTTP Post from a test page submitting a form…
Craig Ray
  • 83
  • 1
  • 8
0
votes
0 answers

Using Parse CloudCode to send a pdf attachment via mailgun?

I am using iOS with parse.com and mailgun. I am trying to send an email with a pdf attached. I have read that the parse.com cloudCode doesn't allow attachments. But I have also seen this post, Mailgun: Sending image using parse cloud code ,saying…
petek157
  • 28
  • 3
0
votes
2 answers

mailgun email validation response

I am a newbie to Mailgun and REST and need some help. If I use the Mailgun provided code: RestClient client = new RestClient(); client.BaseUrl = "https://api.mailgun.net/v2"; client.Authenticator = new HttpBasicAuthenticator("api",…
0
votes
1 answer

Sending to subscribers by category in MailGun

I'm working on a POC for an email alert tool that would be triggered by an CMS admin when a new press release is posted on their website. I've decided to try and use MailGun awesomeness to do all the heavy lifting. Scenario: Subscribers would…
0
votes
1 answer

Unable to handle Mailgun webhook params for POST request to Node

I am in the process of implementing a webhook for Mailgun on my node backend. Having trouble with processing the parameters. The only way I could read the parameters is by parsing the body, in which case the server looks like this: var server =…
Vee6
  • 1,527
  • 3
  • 21
  • 40
0
votes
2 answers

Sidekiq: Pass email body and attachments for processing?

I just learned/started using Sidekiq today to handle background processing of incoming email messages and attachments, but am a bit lost on the best way to get the email body and attachments into the worker for processing. My RoR app is hosted on…
user464180
  • 1,349
  • 2
  • 23
  • 46