I used to rely on Feedburner to deliver daily email digests to my subscribers. But their opt-in form is very limited in terms of design, and I couldn’t find the right code to turn it into a popover that’s responsive and non-invasive (‘cos don’t we all hate popups?).
Then I saw this pretty form from other blogs and immediately signed up to get one too.
I joined Mailmunch mainly because their form is pretty, responsive, and has flexible display options.
But just recently, I discovered that while I’m getting a bunch of email subscribers, I couldn’t do anything with them. I couldn’t send email blasts and updates. I can only stare at the list, and maybe manually add them to my Feedburner list. I wanted to sync the list to my Feedburner subscriber base so they could receive regular digests as well, but there is no straightforward option.
As of writing, Mailmunch doesn’t have any option to integrate with Feedburner yet. But after googling about it, I stumbled upon this tutorial that shows you how to integrate the Feedburner opt-in form to the Mailmunch popover.
The result is successful!
Prerequisites
Steps
<form style="padding:3px;
text-align:center;"
action="https://feedburner.google.com/fb/a/mailverify"
method="post"
target="popupwindow"
onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=YourFeedburnerID', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<input type="text"
style="display: block;
border: 1px solid #ccc;
color: rgba(0,0,0,0.75);
font-size: 14px;
font-weight: normal;
font-family: inherit;
padding: 8px;
height: 37px;
width: 100%;
margin-top:-10px;
margin-bottom: 15px;"
name="email"
placeholder="Enter your email"/>
<input type="hidden" value="YourFeedburnerID" name="uri"/>
<input type="hidden" name="loc" value="en_US"/>
<input type="submit"
style="min-width: 30%;
padding: 10px 20px;
margin: 0 auto;
border: 0;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
font-weight: normal;
display: block;
width: auto;
height: 55px;
font-size: 14px;
text-align: center;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
color: #000000;
background-color: #faae1e;"
value="Subscribe" />
<p style="font-size:12px;
color: #333;
margin-top:10px;
text-align:left">
Delivered by <a href="https://feedburner.google.com" target="_blank">FeedBurner</a></br>
Promise, no spam! You may unsubscribe anytime.
</p>
</form>
<style type="text/css">
.foot-note{
display:none;
}
a:active, a:link{
color:#d6464f;
text-decoration: none;
}
a:hover{
color: #368fe2;
}
</style>