<?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: Sending form results to the user of the post the form was sent from</title>
		<link>https://legacy.forums.gravityhelp.com/topic/sending-form-results-to-the-user-of-the-post-the-form-was-sent-from</link>
		<description>Gravity Support Forums Topic: Sending form results to the user of the post the form was sent from</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 12:13:27 +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/sending-form-results-to-the-user-of-the-post-the-form-was-sent-from" rel="self" type="application/rss+xml" />

		<item>
			<title>marmaris on "Sending form results to the user of the post the form was sent from"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/sending-form-results-to-the-user-of-the-post-the-form-was-sent-from#post-26356</link>
			<pubDate>Thu, 26 May 2011 04:41:47 +0000</pubDate>
			<dc:creator>marmaris</dc:creator>
			<guid isPermaLink="false">26356@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am using a real estate template from gorilla themes which is how i found out about gravity forms. There is a add a listing page (in this case add a hotel) using gravity forms to add the listing from the website as a posting, using the isrealestate id to see it as a listing and not a regular post so that when the form is filled, approved it shows up as a listing on the website.  I am not familiar with creating a custom post template or php coding as i am not a programmer.  so i would not know where to begin to create one.  Here's the link to the site if you wish to see what i've done. &#60;a href=&#34;http://www.marmariskonaklama.com&#34; rel=&#34;nofollow&#34;&#62;http://www.marmariskonaklama.com&#60;/a&#62; ... Thank you again.  Your idea, if i could do it would be most ideal.  I just figured that as listing came in, seeing as we have to approve them first, i would just add the shortcode.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Sending form results to the user of the post the form was sent from"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/sending-form-results-to-the-user-of-the-post-the-form-was-sent-from#post-26109</link>
			<pubDate>Mon, 23 May 2011 11:34:41 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">26109@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Are you using Gravity Forms to create the hotel listing? If so you can use the Content Template feature of the Post Body field and output the shortcode there so it will automatically be added.&#60;/p&#62;
&#60;p&#62;Your other option is to create a custom post template and insert the PHP function call to the form in the template along with the content of the post in the loop in the template.  Then it doesn't have to be added to the post manually, the template would display it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>marmaris on "Sending form results to the user of the post the form was sent from"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/sending-form-results-to-the-user-of-the-post-the-form-was-sent-from#post-26059</link>
			<pubDate>Sat, 21 May 2011 04:55:45 +0000</pubDate>
			<dc:creator>marmaris</dc:creator>
			<guid isPermaLink="false">26059@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you Carl. The link you gave me, I read it. To accomplish this task I used this code in order to have all the hotel listings go to the email address of the user who added that hotel listing.  Works like a charm! However, ever time a user adds a new hotel listing, I have to go into that listing and insert via shortcode, the gravity forms &#34;Reservation Form&#34; on the hotel listing page in order for this &#34;new&#34; code to work.  Here is the code I used.  I inserted it as is into my theme's function.php file at the very bottom:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php add_filter( 'gform_notification_email_3', 'route_notification', 10, 2 );&#60;br /&#62;
function route_notification($email_to, $entry) {&#60;br /&#62;
	global $post;&#60;br /&#62;
	$email_to = get_the_author_email();&#60;br /&#62;
	return $email_to = get_the_author_meta('email', $post-&#38;gt;post_author);&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Sending form results to the user of the post the form was sent from"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/sending-form-results-to-the-user-of-the-post-the-form-was-sent-from#post-26013</link>
			<pubDate>Fri, 20 May 2011 14:54:27 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">26013@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes this is possible.  It requires a customization to use an available API hook to set the Send To address dynamically.  So it does require some custom code that you would add to your themes functions.php file.&#60;/p&#62;
&#60;p&#62;Here is a post that discusses how to do this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/sending-form-to-author-of-post&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/sending-form-to-author-of-post&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We are also going to look into how to easily handle this as a native feature in a future release.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>marmaris on "Sending form results to the user of the post the form was sent from"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/sending-form-results-to-the-user-of-the-post-the-form-was-sent-from#post-26005</link>
			<pubDate>Fri, 20 May 2011 13:57:16 +0000</pubDate>
			<dc:creator>marmaris</dc:creator>
			<guid isPermaLink="false">26005@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We have one general reservation form that caters to the hotel listings that registered users on our site post.  When the form is filled out, we have a hidden field showing us from which post the form was filled in from (basically the name of the hotel).  The form is sent to our administration email.  What we require is that the forms are sent to not the admin email but to the email address of the user who posted that hotel listing so that they know they have a new reservation lead.  Is this possible?&#60;/p&#62;
&#60;p&#62;Thank you in advance for the assistance.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
