<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: How do I Email Notes to Admin using Resend Notification</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-email-notes-to-admin-using-resend-notification</link>
		<description>Gravity Support Forums Topic: How do I Email Notes to Admin using Resend Notification</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 00:04:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/how-do-i-email-notes-to-admin-using-resend-notification" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "How do I Email Notes to Admin using Resend Notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-email-notes-to-admin-using-resend-notification#post-168130</link>
			<pubDate>Mon, 11 Mar 2013 20:06:32 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">168130@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for posting an update. I'm glad Alex provided a solution for us.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karenalenore on "How do I Email Notes to Admin using Resend Notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-email-notes-to-admin-using-resend-notification#post-162101</link>
			<pubDate>Wed, 06 Mar 2013 12:12:29 +0000</pubDate>
			<dc:creator>karenalenore</dc:creator>
			<guid isPermaLink="false">162101@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Turns out through priority help from Alex I was able to get a work around.  Here is my final code to create a new merge tag that pulls the entry notes and include them in email:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
add_filter(&#38;#39;gform_custom_merge_tags&#38;#39;, &#38;#39;custom_merge_tags&#38;#39;, 10, 4);
function custom_merge_tags($merge_tags, $form_id, $fields, $element_id) {
	$merge_tags[] = array(&#38;#39;label&#38;#39; =&#38;gt; &#38;#39;Entry Notes&#38;#39;, &#38;#39;tag&#38;#39; =&#38;gt; &#38;#39;{entry_notes}&#38;#39;);
	return $merge_tags;
}

add_filter( &#38;#39;gform_replace_merge_tags&#38;#39;, &#38;#39;replace_entry_notes&#38;#39;, 10, 7 );
function replace_entry_notes( $text, $form, $entry, $url_encode, $esc_html, $nl2br, $format ) {
	$custom_merge_tag = &#38;#39;{entry_notes}&#38;#39;;

	if ( strpos( $text, $custom_merge_tag ) === false ) {
		return $text;
	}

	$notes = RGFormsModel::get_lead_notes( $entry[&#38;#39;id&#38;#39;] );

	$entry_notes = &#38;#39;&#38;#39;;
	if ( $notes ) {
		$entry_notes .= &#38;quot;&#38;lt;br&#38;gt;&#38;lt;br&#38;gt;&#38;lt;strong&#38;gt;Additional Notes&#38;lt;/strong&#38;gt;&#38;lt;br&#38;gt;&#38;quot;;
		foreach ( $notes as $note ) {
			$date = new DateTime( $note-&#38;gt;date_created, new DateTimeZone( &#38;#39;Europe/London&#38;#39; ) );
			date_default_timezone_set( &#38;#39;America/New_York&#38;#39; );
			$entry_notes .= &#38;quot;&#38;lt;em&#38;gt;&#38;quot; . $note-&#38;gt;user_name . &#38;#39; - &#38;#39; . date( &#38;#39;F j, Y, g:i a&#38;#39;, $date-&#38;gt;format( &#38;#39;U&#38;#39; ) ) . &#38;quot;&#38;lt;/em&#38;gt;&#38;lt;br&#38;gt;&#38;quot;;
			$entry_notes .= $note-&#38;gt;value . &#38;quot;&#38;lt;br&#38;gt;&#38;lt;br&#38;gt;&#38;quot;;
		}
	}

	$entry_notes = str_replace( $custom_merge_tag, $entry_notes, $text );

	return $entry_notes;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How do I Email Notes to Admin using Resend Notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-email-notes-to-admin-using-resend-notification#post-160532</link>
			<pubDate>Tue, 05 Mar 2013 01:45:13 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">160532@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There is not currently a way to do this.  It's not a feature of Gravity Forms.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>promonorge on "How do I Email Notes to Admin using Resend Notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-email-notes-to-admin-using-resend-notification#post-159841</link>
			<pubDate>Mon, 04 Mar 2013 08:02:20 +0000</pubDate>
			<dc:creator>promonorge</dc:creator>
			<guid isPermaLink="false">159841@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I would also like to know this..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karenalenore on "How do I Email Notes to Admin using Resend Notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-email-notes-to-admin-using-resend-notification#post-151749</link>
			<pubDate>Thu, 21 Feb 2013 15:45:14 +0000</pubDate>
			<dc:creator>karenalenore</dc:creator>
			<guid isPermaLink="false">151749@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Or perhaps someone knows a better way to update the entry once it has been reviewed by our staff, and then send it back out to the admin?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karenalenore on "How do I Email Notes to Admin using Resend Notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-email-notes-to-admin-using-resend-notification#post-151085</link>
			<pubDate>Wed, 20 Feb 2013 18:26:50 +0000</pubDate>
			<dc:creator>karenalenore</dc:creator>
			<guid isPermaLink="false">151085@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Once a note is added to an entry, when we hit Resend Notification to Admin, I'd like to append the Notes to the original message.  I am using gform_before_resend_notifications to modify the message and the subject, but how do I access the Notes to include them programatically? I cannot figure out the object to use.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
