Notify User When Submitted Post is Published

Send an email to a user when the post they submitted is published.

Read the Walkthrough

Code

Filename: gw-notify-user-on-publish.php

<?php
/**
 * Gravity Wiz // Gravity Forms // Notify User When Submitted Post is Published
 * https://gravitywiz.com/notify-user-when-submitted-post-is-published/
 *
 * Send an email to a user when the post they submitted is published.
 */
add_action( 'publish_post', 'gw_notify_on_publish' );
function gw_notify_on_publish( $post_id ) {

	$custom_field_name = 'your_custom_field_name';
	$from_name         = 'Your Name';
	$from_email        = 'your@email.com';
	$subject           = 'Your Subject Here';
	$message           = 'Your message here.';

	/* No need to edit beyond this point */

	// if this meta key is not set, this post was not created by a Gravity Form
	if ( ! get_post_meta( $post_id, '_gform-form-id', true ) ) {
		return;
	}

	// make sure we haven't already sent a notification for this post
	if ( get_post_meta( $post_id, '_gform-notified', true ) ) {
		return;
	}

	$email = get_post_meta( $post_id, $custom_field_name, true );

	$headers   = array();
	$headers[] = "From: '{$from_name}' <{$from_email}>";
	$headers[] = 'Content-type: text/html; charset=' . get_option( 'blog_charset' );

	wp_mail( $email, $subject, $message, $headers );

	update_post_meta( $post_id, '_gform-notified', 1 );

}

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Trouble installing this snippet? See our troubleshooting tips.
  • Need to include code? Create a gist and link to it in your comment.
  • Reporting a bug? Provide a URL where this issue can be recreated.

By commenting, I understand that I may receive emails related to Gravity Wiz and can unsubscribe at any time.