Statistics: Posted by Jason Caldwell — October 29th, 2010, 2:43 am
Statistics: Posted by KirkWard — October 28th, 2010, 10:46 am
http://www.example.com/some-script.php?email=%%payer_email%%&item=%%item_name%%&item_number=%%item_number%%
Statistics: Posted by Jason Caldwell — October 27th, 2010, 11:21 pm
http://mydomain.com?email=%%email%%&item=%%itemname%%
Statistics: Posted by KirkWard — October 26th, 2010, 11:16 am
foreach (get_users_of_blog () as $user)
{
$user = new WP_User ($user->ID);
#print_r($user); /* to get a full list of $user-> variables when debugging. */
mail ($user->user_email, "Subject", "Body", "From: you@yoursite.com\r\nContent-Type: text/plain; charset=utf-8");
}
Statistics: Posted by Jason Caldwell — October 26th, 2010, 2:51 am
<?php
mail( "%%role%%@somewhere.com", "subject", "message", "From: %%user_email%%" )
?>
Statistics: Posted by KirkWard — October 24th, 2010, 11:49 pm