);
$smarty = new smartyTemplateSupport();
-
+
$eventsList = GLM_MEMBERS_EVENTS_PLUGIN_ADMIN_URL ."?page=glm-members-admin-menu-events-index&glm_action=index";
$viewPath = GLM_MEMBERS_EVENTS_PLUGIN_PATH . '/views';
$smarty->template->setTemplateDir($viewPath);
function set_content_type(){
return "text/html";
}
+
+ // change the default wordpress from name when sending mail
+ add_filter('wp_mail_from_name','yoursite_wp_mail_from_name');
+ function yoursite_wp_mail_from_name($name) {
+ $siteName = get_bloginfo('name');
+ return $siteName;
+ }
// Send confirmation email, set the content type to allow html by using this filter
add_filter( 'wp_mail_content_type', 'set_content_type' );