[Plugin: Edit Flow] Notifications module: show post content in email
-
Decided to add the post content to the email notification. Added the top and bottom lines and modified the middle one.
$content = get_post($post->ID);
$body .= sprintf( __( 'Author: %1$s (%2$s)', 'edit-flow' ), $post_author->display_name, $post_author->user_email ) . "\r\n\r\n"; $body .= sprintf( __( 'Summary: %s', 'edit-flow' ), $content->post_content ) . "\r\n\r\n\r\n";
The email notifications seemed a little lacking without it.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘[Plugin: Edit Flow] Notifications module: show post content in email’ is closed to new replies.