>
Download This Plugin | |
Download Elegant Themes | |
Name | EELV Newsletter |
Version | 3.13.3 |
Author | bastho, ecolosites // EELV |
Rating | 74 |
Last updated | 2015-03-09 01:48:00 |
Downloads |
6109
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
EELV Newsletter plugin added 4 kB of resources to the Home page and 4 kB of resources to the sample Post page.
EELV Newsletter plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! EELV Newsletter plugin ads no tables to your Wordpress blog database.available attributes :
group=1 (Int, define in wich address book group to register e-mail addresses)
Do you like this plugin ?
[nl_reply_link val="Yes I do" rep="yes"]
[nl_reply_link val="Not at all" rep="no"]
[nl_reply_link val="Can you repeat the question ?" rep="misunderstand"]
Links will be automaticly created with the e-mail address of the receipient. If the link is broken, with not enougth datas, a form will be displayed to complete it.
Use theses hooks to use any external address book
To hook into the pre-sending form and and add your receipients selector, use :
<?php
add_action('eelv_newsletter_select_receipients','my_receipeints_select_function');
function my_receipeints_select_function(){
echo'<input type="checkbox" name="my_receipeints" value="my_receipeints"> My receipeints';
}
?>
To parse the query and correctly add emails to the queue, use :
<?php
add_filter('eelv_newsletter_parse_receipients','my_receipeints_parse_function');
function my_receipeints_parse_function(){
if(isset($_GET['my_receipeints'])){
return 'first@email.dom,second@email.com';
}
}
?>