Questions tagged [django-mailgun]

11 questions
3
votes
0 answers

MailGun - how can I track clicks on specific links

I'm sending emails via MailGun and there are multiple links on a single email. How can I track which link within the email was clicked and which wasn't?
3
votes
0 answers

Cannot Login at MailGun

Whenever I login in Mailgun with my Account it says "Bad email or password" eventhough the email is already activated and the password is correct. I already created a second MailGun account and when I tried to log it out, I also cannot log in back…
Dale Lanto
  • 31
  • 2
1
vote
1 answer

Django Mailgun API returning 401 forbidden

I've installed Django any mail and am I trying to use mail gun with it for password resets. I've added any mail to my installed apps and tried to use mail gun as an API or smtp service. Both return back 401 forbidden For using mail guns API here's…
1
vote
0 answers

sending email using mailgun

def send_complex_message(): return requests.post( "https://api.mailgun.net/v3/YOUR_DOMAIN_NAME/messages", auth=("api", "YOUR_API_KEY"), files=[("attachment", ("test.jpg", open("files/test.jpg","rb").read())), …
neha ameer
  • 41
  • 1
  • 6
1
vote
1 answer

Django + Anymail + Mailgun: Scheduling email delivery

Mailgun supports scheduling emails at a later date in the future, but how does one take advantage of this through Anymail? Anymail provides a wrapper over Mailgun functionality and supports Mailgun-specific features like recipient variables. But how…
Will
  • 1,171
  • 2
  • 14
  • 26
1
vote
1 answer

django_mailgun.MailgunBackend does NOT send Django's errors via email

I had an issue trying to send Django's Errors via email. Mailgun's logs are completely empty for this domain! Hacking django_mailgun.py revealed from mailgun which fails silently. Why django_mailgun.py does not work ?
Kostyantyn
  • 5,041
  • 3
  • 34
  • 30
0
votes
1 answer

How can increase the limit in mailgun message send option?

I have integrated the Mailgun with Nodejs and I send the data of more than 16kb in the dynamic data using the 'h:X-Mailgun-Variables' and got the limitation error. Please help me with how can I increase the limit? Error: { "message": "Send…
0
votes
0 answers

Problem sending an account confirmation email from Django

I'm trying to send an account activation email from a Django REST-based application and through two email services, gmail and Mailgun, using Heroku to deploy the application. I have no issues doing a user registration function…
0
votes
1 answer

Can't install django-mailgun

I want to install django-mailgun library. Followed this tutorial https://learnbatta.com/blog/django-send-email-using-mailgun-api-94/ I tried pip install django-mailgun --verbose Log of command: Using pip 21.0.1 from…
swor
  • 751
  • 3
  • 8
  • 21
0
votes
1 answer

Why Mails sent with django and mailgun (smtp) to my gmail account don't show up in my gmail inbox yet it gets sent successfully?

I am sending emails using mailgun (smtp) to my Gmail account don't show up in my Gmail inbox yet it gets sent successfully. I am using django web development framework. I am using mailgun (smtp). I am still using the sandbox testing environment
senjack
  • 11
  • 1