<?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: Send email based on user login</title>
		<link>https://legacy.forums.gravityhelp.com/topic/send-email-based-on-user-login</link>
		<description>Gravity Support Forums Topic: Send email based on user login</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 22:04:44 +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/send-email-based-on-user-login" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Send email based on user login"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-email-based-on-user-login#post-34701</link>
			<pubDate>Wed, 07 Sep 2011 12:18:58 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">34701@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@Carmellom I am going to close this topic and we'll address your issue in this thread:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/user-notification-based-on-user-meta&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/user-notification-based-on-user-meta&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carmello on "Send email based on user login"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-email-based-on-user-login#post-34648</link>
			<pubDate>Tue, 06 Sep 2011 20:46:48 +0000</pubDate>
			<dc:creator>Carmello</dc:creator>
			<guid isPermaLink="false">34648@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I looked deeper into the  autorepsonder email hook and figured out how to resolve the problem above.  Without an email address in a form though the ui won't allow me to setup a user notification.  The email is being generated by the autorepsonder email hook.  Is there a way to fix this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carmello on "Send email based on user login"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-email-based-on-user-login#post-34644</link>
			<pubDate>Tue, 06 Sep 2011 20:29:40 +0000</pubDate>
			<dc:creator>Carmello</dc:creator>
			<guid isPermaLink="false">34644@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl, is it possible to customize the email response to the current logged in user for certain forms?  For example.. I have a client portal where the client can fill out request forms and the logged in client gets notified by their user meta data but I don't want the autoresponder email hook to take over on the contact page for people that aren't logged in.  Should I use conditional tags to target specific pages or should I use an &#34;if then&#34; statement to check if the user is logged in?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Send email based on user login"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-email-based-on-user-login#post-19406</link>
			<pubDate>Fri, 25 Feb 2011 13:17:36 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">19406@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This isn't currently possible using the Notifications interface.  The Routing can send an email based on a drop down, radio button or checkbox field selection but not a user login.&#60;/p&#62;
&#60;p&#62;If you wanted to customize how this works you can do so via custom code and the use of api hooks.&#60;/p&#62;
&#60;p&#62;The hook to change the Send To address for the Admin Notification is gform_notification_email and here is an example of using it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_filter(&#38;quot;gform_notification_email&#38;quot;, &#38;quot;change_notification_email&#38;quot;, 10, 2);
function change_notification_email($email, $form){
   return &#38;quot;test@test.com&#38;quot;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The hook to change the Send To address for the User Notification is gform_autoresponder_email and here is an example of using it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_filter(&#38;quot;gform_autoresponder_email&#38;quot;, &#38;quot;change_notification_email&#38;quot;, 10, 2);
function change_notification_email($email, $form){
   return &#38;quot;test@test.com&#38;quot;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;These examples don't do exactly what you want, you would have to customize them.  You would have to write code to get the user who is logged in and then set it to return the email address appropriate to that user login.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>everfit on "Send email based on user login"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-email-based-on-user-login#post-19390</link>
			<pubDate>Fri, 25 Feb 2011 09:14:53 +0000</pubDate>
			<dc:creator>everfit</dc:creator>
			<guid isPermaLink="false">19390@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I like the feature that allows you to choose who to send an email to based on certain crieria, but it only seems to work with drop down. I would like to send the email to a certain address based on the user login. Is this possible?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
