So MailChimp let your users to susbscribe and you can send them newsletters in bulk and manage your subscriber's lists. Although MailChimp provide forms and lot of APIs and functions but for that you need to google and search, it takes time.
Here I'll show you how you can simply write some code in to your site while keeping your users on site without going to MailChimp.
After successfull account creation and activation, Generate your API keys and List ID.
So here you go all done with basic code setup, make changes as you need with code.
Note:
MailChimp does not show subscribers in your created list unless user activated their email. When user subscribes MailChimp send activation URL so only valid emails can subscribe.
Here I'll show you how you can simply write some code in to your site while keeping your users on site without going to MailChimp.
Things which are required before you start code.
Sign Up on MailChimp
- Go to your Account Settings -> Extras -> API Keys
- Click on Create a Key button and you will have you API key ready.
- After that go to Lists section, Create List, Visit your created lists under Settings -> List name & defaults you will find List ID.
Now you need to download API files
Download MailChimp API
I am using version2.0 API.
PHP CODE
MailChimp API send request through CURL so make sure you have enabled CURL in your PHP.
Create a php file subscribe.php
Place this inside subscribe.php file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$api_key = "YOUR_API_KEY"; | |
$list_id = "YOUR_LIST_ID"; | |
require('Mailchimp.php'); | |
$Mailchimp = new Mailchimp( $api_key ); | |
$Mailchimp_Lists = new Mailchimp_Lists( $Mailchimp ); | |
$subscriber = $Mailchimp_Lists->subscribe( $list_id, array( 'email' => htmlentities($_POST['email']) ) ); | |
if ( ! empty( $subscriber['leid'] ) ) { | |
echo "success"; | |
} | |
else | |
{ | |
echo "fail"; | |
} | |
?> |
HTML
Create a index.html, place following code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="message"></div> | |
<form role="form" method="post" id="subscribe"> | |
<input type="email" id="email" name="email" placeholder="you@yourself.com" value=""> | |
<button type="submit">SUBSCRIBE</button> | |
</form> |
JAVASCRIPT
Add jquery <script src="jquery.min.js" type="text/javascript"></script>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('#subscribe').submit(function() { | |
if (!valid_email_address($("#email").val())) | |
{ | |
$(".message").html('The email address you entered was invalid. Please make sure you enter a valid email address to subscribe.'); | |
} | |
else | |
{ | |
$(".message").html("<span style='color:green;'>Adding your email address...</span>"); | |
$.ajax({ | |
url: 'subscribe.php', | |
data: $('#subscribe').serialize(), | |
type: 'POST', | |
success: function(msg) { | |
if(msg=="success") | |
{ | |
$("#email").val(""); | |
$(".message").html('<span style="color:green;">You have successfully subscribed to our mailing list.</span>'); | |
} | |
else | |
{ | |
$(".message").html('The email address you entered was invalid. Please make sure you enter a valid email address to subscribe.'); | |
} | |
} | |
}); | |
} | |
return false; | |
}); | |
}); | |
function valid_email_address(email) | |
{ | |
var pattern = new RegExp(/^[+a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i); | |
return pattern.test(email); | |
} |
So here you go all done with basic code setup, make changes as you need with code.
Note:
MailChimp does not show subscribers in your created list unless user activated their email. When user subscribes MailChimp send activation URL so only valid emails can subscribe.