<?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: Email routing - adding BCC to sent to field</title>
		<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field</link>
		<description>Gravity Support Forums Topic: Email routing - adding BCC to sent to field</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 22:10:38 +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/email-routing-adding-bcc-to-sent-to-field" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-225318</link>
			<pubDate>Fri, 26 Apr 2013 08:44:06 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">225318@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Brutus, the issue you are having is NOT the same as what is being described as well. The user above wants to route e-mails using the BCC field. Not route e-mails AND use the BCC field. Can you create your own post with this issue, including what exactly you've done, and what the issue is so we can better troubleshoot it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Brutus on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-225287</link>
			<pubDate>Fri, 26 Apr 2013 08:11:58 +0000</pubDate>
			<dc:creator>Brutus</dc:creator>
			<guid isPermaLink="false">225287@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello - I also noticed the emails I've entered in the BCC field do not receive notifications when routing has been enabled.  Is this still true with the latest version?  &#60;/p&#62;
&#60;p&#62;If so, why are the BCC fields shown when routing is enabled?  This is going to confuse many users like myself who have purchased the plugin.  Why not get this functionality working in your plugin?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-113384</link>
			<pubDate>Thu, 03 Jan 2013 22:51:57 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">113384@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Player 1 email is the email address which was submitted by the user.  It's stored in field 9 of the form.  Player 2 email was submitted in field 11, etc.&#60;/p&#62;
&#60;p&#62;You will replace input_9 with the field that holds the address you want to receive the BCC.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>417 Marketing on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-113225</link>
			<pubDate>Thu, 03 Jan 2013 16:10:24 +0000</pubDate>
			<dc:creator>417 Marketing</dc:creator>
			<guid isPermaLink="false">113225@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes, that is all I added. So in the example:&#60;/p&#62;
&#60;p&#62;01	&#38;lt;?php&#60;br /&#62;
02&#60;br /&#62;
03	add_filter(&#34;gform_pre_submission_filter&#34;, &#34;add_bcc&#34;);&#60;br /&#62;
04	function add_bcc($form){&#60;br /&#62;
05&#60;br /&#62;
06	    //creating list of emails based on fields on the form&#60;br /&#62;
07	    $bcc  = $_POST[&#34;input_9&#34;] . &#34;,&#34;; //player 1 email&#60;br /&#62;
08	    $bcc .= $_POST[&#34;input_11&#34;] . &#34;,&#34;; //player 2 email&#60;br /&#62;
09	    $bcc .= $_POST[&#34;input_13&#34;] . &#34;,&#34;; //player 3 email&#60;br /&#62;
10	    $bcc .= $_POST[&#34;input_15&#34;] . &#34;,&#34;; //player 4 email&#60;br /&#62;
11	    $bcc .= $_POST[&#34;input_17&#34;]; //player 5 email&#60;br /&#62;
12&#60;br /&#62;
13	    //setting notification BCC field to the list of fields&#60;br /&#62;
14	    $form[&#34;notification&#34;][&#34;bcc&#34;] = $bcc;&#60;br /&#62;
15&#60;br /&#62;
16	    //returning modified form object&#60;br /&#62;
17	    return $form;&#60;br /&#62;
18	}&#60;br /&#62;
19	?&#38;gt;&#60;/p&#62;
&#60;p&#62;What are the inputs? For example, &#34;input_9&#34;. What are the &#34;player&#34; emails? For example, &#34;player 1 email&#34;. Would the &#34;player 1 email&#34;  in the example be replaced with an email address? What would I replace &#34;input_9&#34; with?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-112569</link>
			<pubDate>Wed, 02 Jan 2013 19:23:02 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">112569@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The line you added &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_pre_submission_filter&#38;quot;, &#38;quot;pre_submission_filter&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;will just run the function &#60;strong&#62;pre_submission_filter&#60;/strong&#62;.  If that function does not exist, adding the filter won't do anything.  Is that the only line you added?  If so, you didn't break anything but you didn't add any functionality either.  You need to have a function &#34;pre_submission_filter&#34; and it needs to add your BCC addresses.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>417 Marketing on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-112568</link>
			<pubDate>Wed, 02 Jan 2013 19:19:37 +0000</pubDate>
			<dc:creator>417 Marketing</dc:creator>
			<guid isPermaLink="false">112568@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok. I added this snipet to the top of the functions.php file:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
add_filter(&#34;gform_pre_submission_filter&#34;, &#34;pre_submission_filter&#34;);&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;The site looks fine. I don't appear to have broken anything. :)&#60;/p&#62;
&#60;p&#62;If I am understanding correctly, this means that email recipients are now bcc. But why do I get an uneasy feeling from the example you cited at &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#60;/a&#62; that I'm missing something? Is the snippet I added enough or do I need to add more?&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-111811</link>
			<pubDate>Mon, 31 Dec 2012 22:50:50 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">111811@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Do not edit any of the plugin files.  The code in the example goes in your theme's functions.php: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F#PHP&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F#PHP&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I will have that instruction added to the documentation page.&#60;br /&#62;
[DONE - ch 2012.12.31]
&#60;/p&#62;</description>
		</item>
		<item>
			<title>417 Marketing on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-111794</link>
			<pubDate>Mon, 31 Dec 2012 18:45:30 +0000</pubDate>
			<dc:creator>417 Marketing</dc:creator>
			<guid isPermaLink="false">111794@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris,&#60;/p&#62;
&#60;p&#62;I don't fully understand the example. I've located the form_display.php file in the plugin editor. Do I add the example as is? I'm guessing not. I'm not sure how to apply the example to fit the needs of my situation. Can I simply add:&#60;/p&#62;
&#60;p&#62;add_filter(&#34;gform_pre_submission_filter&#34;, &#34;pre_submission_filter&#34;);&#60;/p&#62;
&#60;p&#62;just below &#38;lt;?php on the first line?&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-111790</link>
			<pubDate>Mon, 31 Dec 2012 18:10:34 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">111790@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Routing cannot currently be used with BCC, only &#34;To:&#34;.  No features have been added to change that functionality.  You can currently get around this restriction in the form builder by using the gform_pre_submission_filter: &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There is an example of adding BCC addresses to the notification on that page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>417 Marketing on "Email routing - adding BCC to sent to field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/email-routing-adding-bcc-to-sent-to-field#post-111767</link>
			<pubDate>Mon, 31 Dec 2012 15:33:53 +0000</pubDate>
			<dc:creator>417 Marketing</dc:creator>
			<guid isPermaLink="false">111767@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, I've set up 'email routing' based on conditional logic so that different people get the notification based on specific conditions, but when more than one email address is entered into a &#34;send to&#34; field, the other email users can see who else got the notification. This creates a problem when one of the hits &#34;reply all&#34; to the message. Is there a way to set up a bcc in the send to field?&#60;/p&#62;
&#60;p&#62;I see that someone posted this issue around a year ago and they were told that this feature was coming soon in an update. Has that happened yet?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
