Author: jfthomps
Date: Wed Jun 1 15:14:31 2016
New Revision: 1746476
URL: http://svn.apache.org/viewvc?rev=1746476&view=rev
Log:
VCL-947 - for block allocation accept/reject emails change sender address from
ENVELOPESENDER to HELPEMAIL
blockallocations.php: modified AJacceptBlockAllocationSubmit and
AJrejectBlockAllocationSubmit: changed address set for $mailParams from
ENVELOPESENDER to HELPEMAIL
Modified:
vcl/trunk/web/.ht-inc/blockallocations.php
Modified: vcl/trunk/web/.ht-inc/blockallocations.php
URL:
http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/blockallocations.php?rev=1746476&r1=1746475&r2=1746476&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/blockallocations.php (original)
+++ vcl/trunk/web/.ht-inc/blockallocations.php Wed Jun 1 15:14:31 2016
@@ -2553,7 +2553,7 @@ function AJacceptBlockAllocationSubmit()
# send accept email to requestor
$message = $emailtext . "\n\nVCL Admins";
- $mailParams = "-f" . ENVELOPESENDER;
+ $mailParams = "-f" . HELPEMAIL;
mail($emailuser, i("VCL Block Allocation Accepted"), $message, '',
$mailParams);
print "clearHideConfirmAccept();";
@@ -2725,7 +2725,7 @@ function AJrejectBlockAllocationSubmit()
# send reject email to requestor
$message = $emailtext . "\n\nVCL Admins";
- $mailParams = "-f" . ENVELOPESENDER;
+ $mailParams = "-f" . HELPEMAIL;
mail($emailuser, i("VCL Block Allocation Rejected"), $message, '',
$mailParams);
print "clearHideConfirmReject();";