Skip to content

Instantly share code, notes, and snippets.

@drrobotnik
Created April 10, 2014 21:35
Show Gist options
  • Save drrobotnik/10425669 to your computer and use it in GitHub Desktop.
Save drrobotnik/10425669 to your computer and use it in GitHub Desktop.
leadin custom welcome message
function cv_leadin_subscribe_email( $fields ){
$body = file_get_contents( get_stylesheet_directory() . '/leadin/email.html' );
$replacements = array();
foreach ( $fields as $field ) {
$brace_label = "{" . ucwords( $field['label'] ) . "}";
$replacements[$brace_label] = $field['value'];
}
$body = strtr($body, $replacements);
return $body;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment