<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>FEATURE REQUEST: email template headers</title>
        <link>https://interactivetools.com/forum/forum-posts.php?FEATURE-REQUEST-email-template-headers-79565</link>
        <description></description>
        <pubDate>Thu, 10 Sep 2026 07:17:47 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;FEATURE-REQUEST-email-template-headers-79565" rel="self" type="application/rss+xml" />

                <item>
          <title>FEATURE REQUEST: email template headers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234255#post2234255</link>
          <description><![CDATA[<p>Hi Jeff, </p>
<p>Ok, thanks for all the feedback.  We'll add those fields for the next release.</p>
<p>Cheers!</p>]]></description>
          <pubDate>Mon, 23 Jun 2014 17:12:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234255#post2234255</guid>
        </item>
                <item>
          <title>FEATURE REQUEST: email template headers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234235#post2234235</link>
          <description><![CDATA[<p>I understand your concern about added fields.</p>
<p>Since as a general rule emails will/should always be from admin, I would agree that FROM might be unnecessary. CC or BCC might of use to some, but I prefer using a different email to admin than a copy of the one to the user.</p>
<p>I find it practical to add a second call to send an mail using a different template to admin (which I discovered needs to be before the one to user) .</p>
<p><strong>Use Case</strong></p>
<p>REPLY TO does not impact the original email destination but could very well be different for each email for a reply.</p>
<p>FROM admin, TO user REPLY TO [sales|billing|support]</p>
<p>FROM admin TO admin REPLY TO user</p>]]></description>
          <pubDate>Thu, 19 Jun 2014 19:26:46 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234235#post2234235</guid>
        </item>
                <item>
          <title>FEATURE REQUEST: email template headers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234234#post2234234</link>
          <description><![CDATA[<p>Hi Jeff, </p>
<p>Ok, the issue we don't want to add too many fields, or we end up with something that isn't any more simple than a programming language.  So most of what we do design wise is try to limit it to what's absolutely essential.</p>
<p>But as you say, with sending domain validation it can become an issue.  I'm wondering if it even makes sense being able to specify a different from: email for each template.</p>
<p>In any case, what fields do you want added?  Reply-to, CC, and BCC?  To the "Email Templates" section, correct?  I'll see what I can come up with for that.</p>]]></description>
          <pubDate>Thu, 19 Jun 2014 18:25:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234234#post2234234</guid>
        </item>
                <item>
          <title>FEATURE REQUEST: email template headers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234231#post2234231</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>Yes I know I can add additional headers there which is what I did, but I was suggesting to add them  in the EMAIL TEMPLATES themselves.</p>
<p>Why code it when it could be stored in the database? Seems redundant to have the templates and then need to override/supplement them in custom code. For instance:</p>
<p>FROM: admin</p>
<p>TO: admin</p>
<p>Reply To: user</p>
<p>This is handy for signup forms with the email going to the admin but allows admin to do a reply to user. Especially handy when using Mandrill for mail handling as you don't want the from address to be the user's.</p>


]]></description>
          <pubDate>Thu, 19 Jun 2014 15:26:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234231#post2234231</guid>
        </item>
                <item>
          <title>FEATURE REQUEST: email template headers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234228#post2234228</link>
          <description><![CDATA[<p>Hi Jeff, </p>
<p>Where do you want to add reply-to?  To the default signup message or to your custom admin message that you added?</p>
<p>There's no functionality in the plugin for it but there is functionality in the internal sendMessage function in /lib/common.php as you can see in the function header in that file:</p>
<p><code>// Full Featured Example:<br />  $errors = sendMessage(array(<br />    'from'    =&gt; "from@example.com",<br />    'to'      =&gt; "to@example.com",<br />    'subject' =&gt; "Enter subject here, supports utf-8 content",<br />    'text'    =&gt; "Text message content",<br />    'html'    =&gt; "&lt;b&gt;HTML&lt;/b&gt; message content",<br />    'headers' =&gt; array(<br />      "CC"          =&gt; "cc@example.com",<br />      "BCC"         =&gt; "bcc@example.com",<br />      <span style="color:#ff0000;">"Reply-To"    =&gt; "rt@example.com",</span><br />      "Return-Path" =&gt; "rp@example.com",<br />    ),<br />    'attachments' =&gt; array(<br />      'simple.txt'  =&gt; 'A simple text file',<br />      'dynamic.csv' =&gt; $csvData,<br />      'archive.zip' =&gt; $binaryData,<br />      'image.jpg'   =&gt; file_get_contents($imagePath),<br />    ),<br />    //'disabled' =&gt; false, // set to true to disable sending of message<br />    //'logging' =&gt; false, // set to false to disable logging (if logging is already enabled) - used for background mailers<br />  ));<br /></code></p>
<p>So you might be able to add it by adding a 'headers' =&gt; array('Reply-To' =&gt; $email), field.</p>
<p>Hope that helps!</p>]]></description>
          <pubDate>Thu, 19 Jun 2014 12:41:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234228#post2234228</guid>
        </item>
                <item>
          <title>FEATURE REQUEST: email template headers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234197#post2234197</link>
          <description><![CDATA[<p>It would be useful to add additional optional headers to the email templates such as CC, BCC and Reply-To</p>
<p>From the forums there appears to be some demand for this functionality.</p>
<p>I have set up my app to send all transactional email through mandrill which works extremely well. Currently when someone signs up via the membership plug in, an email is sent to the user with their password. I have also added a call to send a message to admin that a new user has been added. I would like to set the "reply to" header to be the user's email. Using the users email in the from address when using mandrill works but impacts sending domain validation.</p>
]]></description>
          <pubDate>Fri, 13 Jun 2014 09:01:43 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234197#post2234197</guid>
        </item>
              </channel>
    </rss>
  