<?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: Customize outgoing registration emails?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails</link>
		<description>Gravity Support Forums Topic: Customize outgoing registration emails?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 12:01:06 +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/customize-outgoing-registration-emails" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-376136</link>
			<pubDate>Sat, 27 Jul 2013 06:57:34 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">376136@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you still require assistance with this please open a new &#60;a href=&#34;http://www.gravityhelp.com/request-support/&#34; rel=&#34;nofollow&#34;&#62;support ticket&#60;/a&#62; or a &#60;a href=&#34;http://www.gravityhelp.com/priority-support/&#34; rel=&#34;nofollow&#34;&#62;priority support ticket&#60;/a&#62; if you are a developer license holder. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wolf123 on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-347605</link>
			<pubDate>Thu, 27 Jun 2013 06:56:53 +0000</pubDate>
			<dc:creator>wolf123</dc:creator>
			<guid isPermaLink="false">347605@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Guys!&#60;br /&#62;
I've a similar problem! I need to deactivate the normal Wordpress notification email because I use only the Gravity Forms notification with the plugin User Registration Add-On.&#60;/p&#62;
&#60;p&#62;Now, when a new user is registred, he receive 2 email. The first one is the default email by WP, and the second is the nice email that I personalized in the notification pannel.&#60;/p&#62;
&#60;p&#62;So, is it possibile to deactivate the first email by WP, and leave only the second email?&#60;br /&#62;
Many thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>globaldev on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-329234</link>
			<pubDate>Mon, 17 Jun 2013 20:36:36 +0000</pubDate>
			<dc:creator>globaldev</dc:creator>
			<guid isPermaLink="false">329234@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That worked for me John.&#60;br /&#62;
Thank you very much for sharing that with us.&#60;br /&#62;
Sad it won't take html, but it is fine for this kind of notification email.&#60;br /&#62;
All the best
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johndeanwatson@gmail.com on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-329163</link>
			<pubDate>Mon, 17 Jun 2013 19:20:10 +0000</pubDate>
			<dc:creator>johndeanwatson@gmail.com</dc:creator>
			<guid isPermaLink="false">329163@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;AUTHOR_URL, LOGIN_URL, and EMAIL_ADDRESS in the above code are meant to be replaced with real addresses. For some reason this forum kept wrapping my URLs with html tags inside the code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johndeanwatson@gmail.com on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-329157</link>
			<pubDate>Mon, 17 Jun 2013 19:11:36 +0000</pubDate>
			<dc:creator>johndeanwatson@gmail.com</dc:creator>
			<guid isPermaLink="false">329157@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm going to try and post some code below.&#60;/p&#62;
&#60;p&#62;This is a plugin that overrides the default wp_new_user_notification function. Place it in a folder in your plugins directory, customize it, and activate it. Works for me.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

/*
Plugin Name: Registration Email Template
Author: Kory Mathis
Version: 1.0
Author URI: AUTHOR_URL
*/

// Redefine user notification function
if ( !function_exists(&#38;#39;wp_new_user_notification&#38;#39;) ) {
    function wp_new_user_notification( $user_id, $plaintext_pass = &#38;#39;&#38;#39; ) {
        $user = new WP_User($user_id);

        $user_login = stripslashes($user-&#38;gt;user_login);
        $user_email = stripslashes($user-&#38;gt;user_email);

        if ( empty($plaintext_pass) )
            return;

        $message = sprintf(__(&#38;quot;Welcome to %s! Here&#38;#39;s how to log in:&#38;quot;), get_option(&#38;#39;blogname&#38;#39;)) . &#38;quot;\r\n\r\n&#38;quot;;
        $message .= &#38;quot;LOGIN_URL&#38;quot; . &#38;quot;\r\n&#38;quot;;
        $message .= sprintf(__(&#38;#39;Username: %s&#38;#39;), $user_login) . &#38;quot;\r\n&#38;quot;;
        $message .= sprintf(__(&#38;#39;Password: %s&#38;#39;), $plaintext_pass) . &#38;quot;\r\n\r\n&#38;quot;;
        $message .= sprintf(__(&#38;#39;If you have any problems, please contact us at EMAIL_ADDRESS.&#38;#39;), get_option(&#38;#39;admin_email&#38;#39;)) . &#38;quot;\r\n\r\n&#38;quot;;
        $message .= __(&#38;#39;Thanks!&#38;#39;);

        wp_mail($user_email, sprintf(__(&#38;#39;[%s] Your username and password&#38;#39;), get_option(&#38;#39;blogname&#38;#39;)), $message);

    }
}

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Note: I haven't been able to get HTML tags to work. Seems like it's set to plain text.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsncafe on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-309179</link>
			<pubDate>Fri, 07 Jun 2013 23:41:59 +0000</pubDate>
			<dc:creator>jsncafe</dc:creator>
			<guid isPermaLink="false">309179@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey guys. I just tried a couple plugins and even searched through the WordPress php files and couldn't find a way to customize these emails.&#60;/p&#62;
&#60;p&#62;Has anybody had any luck doing this?&#60;/p&#62;
&#60;p&#62;The plugins I used were &#34;Register Plus Redux&#34; and &#34;SB Welcome Email Editor&#34;. Neither had any effect on the email sent by gravity forms.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-306466</link>
			<pubDate>Thu, 06 Jun 2013 15:48:43 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">306466@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We just hook into the standard WordPress core functionality that sends out the new user welcome email. We don't control the look and feel of that.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lochuuho on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-306279</link>
			<pubDate>Thu, 06 Jun 2013 13:50:53 +0000</pubDate>
			<dc:creator>lochuuho</dc:creator>
			<guid isPermaLink="false">306279@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm also looking to do something similar and found Theme My Login plugin to customize the emails. However, it doesn't seem to be working with Gravity Forms.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsncafe on "Customize outgoing registration emails?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customize-outgoing-registration-emails#post-301978</link>
			<pubDate>Tue, 04 Jun 2013 18:03:34 +0000</pubDate>
			<dc:creator>jsncafe</dc:creator>
			<guid isPermaLink="false">301978@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62;This plugin is working great so far. Something I'd like to do is customize the emails that are sent out, but I can't find where in the PHP the emails are compiled.&#60;/p&#62;
&#60;p&#62;Can somebody help with this?&#60;/p&#62;
&#60;p&#62;Thanks so much!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
