$vars["paypal"]["initial"] = the initial or trial amount of the sale.
$vars["paypal"]["initial_term"] = 1 D (would indicate an initial/trial period 1 Day). This is always a digit followed by a space, and then one of D,W,M,Y,L for Days, Weeks, Months, Years or Lifetimes.
$vars["paypal"]["regular"] = the regular and/or recurring amount associated with the sale.
$vars["paypal"]["regular_term"] = 1 M (would indicate the regular recurring or fixed-term term period). This is always a digit followed by a space, and then one of D,W,M,Y,L for Days, Weeks, Months, Years or Lifetimes.
Statistics: Posted by Jason Caldwell — January 16th, 2012, 8:47 am
Statistics: Posted by EidschunMedia — January 15th, 2012, 10:14 pm
<?php
/* Your own custom subject line. */
add_filter ("ws_plugin__s2member_signup_email_sbj", "my_s2_signup_email_sbj");
function my_s2_signup_email_sbj ($sbj, $vars = array ())
{
return "Congratulations! ( your membership has been approved )";
}
/* Your own custom message body. */
add_filter ("ws_plugin__s2member_signup_email_msg", "my_s2_signup_email_msg");
function my_s2_signup_email_msg ($msg, $vars = array ())
{
return "Thank you! You now have access to:\n" . $vars["paypal"]["item_name"];
}
?>
Statistics: Posted by Jason Caldwell — November 15th, 2011, 7:36 pm
Statistics: Posted by yamidemichaos — November 15th, 2011, 3:39 pm
Statistics: Posted by Raam Dev — November 15th, 2011, 3:30 pm
Statistics: Posted by yamidemichaos — November 15th, 2011, 2:47 pm
Statistics: Posted by Raam Dev — November 15th, 2011, 2:44 pm
Statistics: Posted by Cristián Lávaque — November 15th, 2011, 2:43 pm
Statistics: Posted by yamidemichaos — November 15th, 2011, 2:38 pm
Statistics: Posted by Raam Dev — November 15th, 2011, 2:36 pm
Statistics: Posted by yamidemichaos — November 15th, 2011, 2:25 pm
Statistics: Posted by yamidemichaos — November 15th, 2011, 2:09 pm
yamidemichaos wrote:
I just to create a customized ID which random features which attached to the email...
Statistics: Posted by Raam Dev — November 15th, 2011, 1:43 pm
<?php
/* Your own custom subject line. */
add_filter ("ws_plugin__s2member_capabilities_email_sbj", "my_s2_ccaps_email_sbj");
function my_s2_ccaps_email_sbj ($sbj, $vars = array ())
{
return "Thank you! Your account has been updated.";
}
/* Your own custom message body. */
add_filter ("ws_plugin__s2member_capabilities_email_msg", "my_s2_ccaps_email_msg");
function my_s2_ccaps_email_msg ($msg, $vars = array ())
{
return "Thank you! You now have access to:\n" . $vars["paypal"]["item_name"] . "\n\nPlease log back in now.\n" . wp_login_url ();
}
?>
Statistics: Posted by yamidemichaos — November 15th, 2011, 1:34 pm
Statistics: Posted by Raam Dev — November 15th, 2011, 11:15 am
Statistics: Posted by yamidemichaos — November 15th, 2011, 9:46 am
<?php
/* Your own custom subject line. */
add_filter ("ws_plugin__s2member_capabilities_email_sbj", "my_s2_ccaps_email_sbj");
function my_s2_ccaps_email_sbj ($sbj, $vars = array ())
{
return "Thank you! Your account has been updated.";
}
/* Your own custom message body. */
add_filter ("ws_plugin__s2member_capabilities_email_msg", "my_s2_ccaps_email_msg");
function my_s2_ccaps_email_msg ($msg, $vars = array ())
{
return "Thank you! You now have access to:\n" . $vars["paypal"]["item_name"] . "\n\nPlease log back in now.\n" . wp_login_url ();
}
?>
Statistics: Posted by Jason Caldwell — October 26th, 2011, 12:06 pm
Statistics: Posted by Eduan — October 24th, 2011, 5:35 pm
Statistics: Posted by lmllewellyn — October 24th, 2011, 4:27 pm