Author: jleroux
Date: Thu Sep 6 07:50:54 2018
New Revision: 1840189
URL:
http://svn.apache.org/viewvc?rev=1840189&view=revLog:
Improved: Display From address in send confirmation email form
(OFBIZ-10493)
Open any sales order and press "Send a confirmation email" button.
Note that header From is read-only and empty. No problem with read-only mode as
the address has been taken from ProductStoreEmailSetting but I think it would
be better to display this address.
Thanks: Oleg Andreyev
Modified:
ofbiz/ofbiz-framework/trunk/applications/order/template/order/SendConfirmationEmail.ftl
Modified: ofbiz/ofbiz-framework/trunk/applications/order/template/order/SendConfirmationEmail.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/order/template/order/SendConfirmationEmail.ftl?rev=1840189&r1=1840188&r2=1840189&view=diff==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/order/template/order/SendConfirmationEmail.ftl (original)
+++ ofbiz/ofbiz-framework/trunk/applications/order/template/order/SendConfirmationEmail.ftl Thu Sep 6 07:50:54 2018
@@ -67,6 +67,7 @@ under the License.
<td width="54%">
<#if productStoreEmailSetting.fromAddress??>
<input type="hidden" name="sendFrom" value="${productStoreEmailSetting.fromAddress}" />
+ ${productStoreEmailSetting.fromAddress}
<#else>
<input type="text" size="40" name="sendFrom" value="" />
</#if>