<?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: Refer information to a friend/associate</title>
		<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate</link>
		<description>Gravity Support Forums Topic: Refer information to a friend/associate</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 03:42: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/refer-information-to-a-friendassociate" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Refer information to a friend/associate"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate#post-18914</link>
			<pubDate>Fri, 18 Feb 2011 12:31:48 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">18914@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This hook isn't in the documentation on that page.  It's in the new developers documentation that will be launching at the end of this month with the final release of 1.5.&#60;/p&#62;
&#60;p&#62;The hook you use to set the Send To address of the User Notification is the gform_autoresponder_email hook.&#60;/p&#62;
&#60;p&#62;Here is an example of this hook being used.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#60;/code&#62;&#60;/pre&#62;
&#38;lt;?php&#60;br /&#62;
add_filter(&#34;gform_autoresponder_email&#34;, &#34;change_notification_email&#34;, 10, 2);&#60;br /&#62;
function change_notification_email($email, $form){&#60;br /&#62;
    //creating email list from fields 2 and 3.&#60;br /&#62;
    return $_POST[&#34;input_2&#34;] . &#34;,&#34; . $_POST[&#34;input_3&#34;];&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;`&#60;/p&#62;
&#60;p&#62;The example above returns the values of 2 fields from a form as the Send To address.&#60;/p&#62;
&#60;p&#62;If you want to apply this only to a specific form you would change this:&#60;/p&#62;
&#60;p&#62;add_filter(&#34;gform_autoresponder_email&#34;, &#34;change_notification_email&#34;, 10, 2);&#60;/p&#62;
&#60;p&#62;To this:&#60;/p&#62;
&#60;p&#62;add_filter(&#34;gform_autoresponder_email_1&#34;, &#34;change_notification_email&#34;, 10, 2);&#60;/p&#62;
&#60;p&#62;The 1 in the above add_filter call that was added to gform_autoresponder_email is the form id.  This way you can specify a specific form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TotzPelton on "Refer information to a friend/associate"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate#post-18889</link>
			<pubDate>Thu, 17 Feb 2011 21:48:18 +0000</pubDate>
			<dc:creator>TotzPelton</dc:creator>
			<guid isPermaLink="false">18889@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am looking to use the TO field hooks you mentioned Carl, but I am unclear where to find the API reference. I am trying to use the example at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/hooks-and-filters/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/hooks-and-filters/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but I'm not sure this is what I need. Can you point me to a resource?&#60;br /&#62;
Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mrdfrost on "Refer information to a friend/associate"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate#post-13575</link>
			<pubDate>Mon, 29 Nov 2010 17:44:30 +0000</pubDate>
			<dc:creator>mrdfrost</dc:creator>
			<guid isPermaLink="false">13575@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;perfect. Thanks for your help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Refer information to a friend/associate"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate#post-13571</link>
			<pubDate>Mon, 29 Nov 2010 17:29:57 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">13571@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I don't believe there is a hook for the CC field, however there is a hook for the TO field so you could use custom code to change the TO field so it sends to multiple email addresses.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mrdfrost on "Refer information to a friend/associate"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate#post-13570</link>
			<pubDate>Mon, 29 Nov 2010 17:28:33 +0000</pubDate>
			<dc:creator>mrdfrost</dc:creator>
			<guid isPermaLink="false">13570@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Im not too familiar with the api hooks, but would it be safe to assume that the CC could be sent to a &#34;friends&#34; email that they provide through the form?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Refer information to a friend/associate"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate#post-13568</link>
			<pubDate>Mon, 29 Nov 2010 17:24:47 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">13568@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Gravity Forms supports 2 default notifications.&#60;/p&#62;
&#60;p&#62;The Admin Notification which is designed to go to you or someone associated with the site.  It can be sent to multiple people via CC or BCC.  It can be customized via custom code using api hooks.&#60;/p&#62;
&#60;p&#62;The User Notification is designed to go to the person filling out the form.  It is an autoresponder that executes as soon as the form is submitted.  You can use it to send a confirmation to the user filling out the form, etc.  It is also customizable via custom code using api hooks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mrdfrost on "Refer information to a friend/associate"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/refer-information-to-a-friendassociate#post-13566</link>
			<pubDate>Mon, 29 Nov 2010 17:20:01 +0000</pubDate>
			<dc:creator>mrdfrost</dc:creator>
			<guid isPermaLink="false">13566@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;From what I understand, if I want to have an email sent to a third party, I need to setup a notification depending on a selection made within a drop down menu. But this looks like you already need a set email to have it sent to.&#60;/p&#62;
&#60;p&#62;We are potentially wanting to have a custom notification sent to an email that would be provided by the person filling out the form. Depending on how they answer either have that email sent out or just have the company contact the individual if an email is not available.&#60;br /&#62;
Can I achieve something like this through gravity?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
