BUG 11522 Change email 'from' when sending a pause case notification SOLVED
- If user send an email notification when he pauses a case. The FROM is always "PROCESSMAKER". Is it possible to change it to something else. - Was added the field 'from name' for another title the email sent by to pause a case.
This commit is contained in:
@@ -688,6 +688,7 @@ class adminProxy extends HttpProxyController
|
||||
$aFields['SMTPSecure'] = $_POST['UseSecureCon'];
|
||||
$aFields['SMTPSecure'] = ($aFields['SMTPSecure'] == 'No') ? 'none' : $aFields['SMTPSecure'];
|
||||
$aFields['MAIL_TO'] = $_POST['eMailto'];
|
||||
$aFields['MESS_FROM_NAME'] = $_POST['FromName'];
|
||||
$aFields['MESS_TRY_SEND_INMEDIATLY'] = $_POST['SendaTestMail'];//isset($_POST['form']['MESS_TRY_SEND_INMEDIATLY']) ? $_POST['form']['MESS_TRY_SEND_INMEDIATLY'] : '';
|
||||
$aFields['MESS_TRY_SEND_INMEDIATLY'] = ($aFields['MESS_TRY_SEND_INMEDIATLY'] == 'true') ? '1' : $aFields['MESS_TRY_SEND_INMEDIATLY'];
|
||||
$CfgUid='Emails';
|
||||
|
||||
Reference in New Issue
Block a user