Skip to content

Instantly share code, notes, and snippets.

View Raign13's full-sized avatar

Suzy B Raign13

View GitHub Profile
@JudeRosario
JudeRosario / Follow Up Email Snippet
Last active August 29, 2015 14:27 — forked from anonymous/Follow Up Email Snippet
Suzy - Follow Up Email Code Appt+
add_filter( 'app_message_headers', 'custom_headers' );
function custom_headers( $message_headers ){
$message_headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
return $message_headers;
}
function follow_up( $value ) {
global $wpdb, $appointments;
$a = $appointments;