Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mailgun - Modify and/or wrap unsubscribe page

I'm using the Mailgun unsubscribe handling. I'd like to be able modify the mailgun generated "Unsubscribe" and "You have unsubscribed" pages. If there is no way to modify these pages, is there a way to wrap them with header / footer to add some branding?

like image 595
nterry Avatar asked Jul 23 '14 12:07

nterry


2 Answers

Unfortunately, unless you handle the unsubscribes on your server, there is no way to customise those pages!

like image 133
API_sheriff_orlie Avatar answered Nov 09 '22 08:11

API_sheriff_orlie


Hey You can actually handle it yourself. What your saying is possible however according to mail-gun support the urls are never front facing meaning in your html you would have to do something like this:

<br>
 Want to change how you receive these emails?<br>
<a href=%mailing_list_unsubscribe_url% target="_blank">Stop receiving emails 
from us</a><br>
&nbsp;

According to them this should work the same as there methods. if you do not want to use the unsubscribe mailing list then use another one there are 3 found here

like image 37
Zack117 Avatar answered Nov 09 '22 07:11

Zack117