<?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: One form, 150 addressees</title>
		<link>https://legacy.forums.gravityhelp.com/topic/one-form-150-addressees</link>
		<description>Gravity Support Forums Topic: One form, 150 addressees</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 06:35:14 +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/one-form-150-addressees" rel="self" type="application/rss+xml" />

		<item>
			<title>jacquesbez on "One form, 150 addressees"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/one-form-150-addressees#post-60518</link>
			<pubDate>Mon, 28 May 2012 08:34:01 +0000</pubDate>
			<dc:creator>jacquesbez</dc:creator>
			<guid isPermaLink="false">60518@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There is an easier way of doing this.  I use it on several of my websites.  Here is Step by Step instructions - &#60;a href=&#34;http://makemywordpresswebsite.com/gravity-forms-e-mail-notification-to-a-hidden-e-mail-address&#34; rel=&#34;nofollow&#34;&#62;http://makemywordpresswebsite.com/gravity-forms-e-mail-notification-to-a-hidden-e-mail-address&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dochara on "One form, 150 addressees"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/one-form-150-addressees#post-60504</link>
			<pubDate>Mon, 28 May 2012 07:15:52 +0000</pubDate>
			<dc:creator>dochara</dc:creator>
			<guid isPermaLink="false">60504@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I was looking to do something similar, and came up with an answer that might be useful to someone. &#60;/p&#62;
&#60;p&#62;1. It assumes that the desired recipient email is a custom field on the post - example assumes this custom field is called 'recip_email'.&#60;/p&#62;
&#60;p&#62;2. When setting up the form add a hidden field, populated with the variable {embed_post:ID} - example assumes this is FieldID 5 in form 10.&#60;/p&#62;
&#60;p&#62;3. Add a recipient email field, set visibility to admin only. Example assume this is Field ID 7&#60;/p&#62;
&#60;p&#62;4. Enable notification to users, select the recipient email address as the to address.&#60;/p&#62;
&#60;p&#62;5. Add this function&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_pre_submission_10&#38;quot;, &#38;quot;get_the_recipient_email&#38;quot;);
function get_the_recipient_email($form){
$recip_mail=get_post_meta($_POST[&#38;quot;input_5&#38;quot;],&#38;#39;recip_email&#38;#39;, true);

	$_POST[&#38;quot;input_7&#38;quot;] = $recip_mail;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Because you are doing this post submission the recipient email is not visible in the source at the time the form is submitted, but is added before the email is sent.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Added&#60;/strong&#62; - in fact you could do this by entering a custom field value as a variable in the recipient email field directly. I actually did something else - which was to get the post author email, which was not stored as a custom field. That looked like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_pre_submission_10&#38;quot;, &#38;quot;get_the_business_recipient&#38;quot;);
function get_the_business_recipient($form){
$post_id = get_post($_POST[&#38;quot;input_5&#38;quot;]);
$author=get_userdata($post_id-&#38;gt;post_author);

	$_POST[&#38;quot;input_7&#38;quot;] = $author-&#38;gt;user_email;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>momofone on "One form, 150 addressees"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/one-form-150-addressees#post-54560</link>
			<pubDate>Sun, 08 Apr 2012 10:48:50 +0000</pubDate>
			<dc:creator>momofone</dc:creator>
			<guid isPermaLink="false">54560@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a similar scenario to the OP.  I have events pages set up with the event title on each events custom post but the same standard registration form on each event page.  It needs to route to the person in the area hosting the event which is included in the posts title.&#60;/p&#62;
&#60;p&#62;I can set up a hidden form field populated with the unique event title, however I can't route it to anyone as it is not chosen from a dropdown or radio button. Is there any way around this as there are likely to be hundreds of events and I don't want to create separate forms for each event?  Whilst I could introduce a dropdown with 150 constantly changing venues, it is illogical considering the event is already in the title and the person is already on that event page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ajax on "One form, 150 addressees"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/one-form-150-addressees#post-52489</link>
			<pubDate>Thu, 15 Mar 2012 01:05:38 +0000</pubDate>
			<dc:creator>Ajax</dc:creator>
			<guid isPermaLink="false">52489@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Would there be a way to put the dancer's email address in to the post as a custom post field, and then have the form pull that in as a default? Probably could do that with a change to the theme templates.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "One form, 150 addressees"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/one-form-150-addressees#post-52350</link>
			<pubDate>Wed, 14 Mar 2012 02:53:20 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">52350@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Nope. There's no shortcode to do what you're asking. The notification routing is tied to a selection in a drop down or radio list.&#60;/p&#62;
&#60;p&#62;I'll inquire with the team about this scenario and see if there's something we can offer besides the normal routing options.. not sure offhand.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DorothyM on "One form, 150 addressees"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/one-form-150-addressees#post-52338</link>
			<pubDate>Wed, 14 Mar 2012 00:23:37 +0000</pubDate>
			<dc:creator>DorothyM</dc:creator>
			<guid isPermaLink="false">52338@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Each of my blog posts is about a specific dancer.  I want the reader to be able to click on a link in the blog post, and send an email to that dancer.  I don't want to have to create a form for every single one of the 150 dancers!&#60;/p&#62;
&#60;p&#62;One solution was suggested but it involves having a dropdown box with all the dancers' names - not very practical with 150 names. &#60;/p&#62;
&#60;p&#62;The dancers are not users on the site - I'm the author of all the posts.  &#60;/p&#62;
&#60;p&#62;Is there a shortcode I can put on each post which will use the same form but specify a different email destination in each post?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
