Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Robert Spencer
wiaflos
Commits
07e399ff
Commit
07e399ff
authored
Dec 02, 2016
by
Nigel Kukard
Browse files
Added Reply-To support in emailing
parent
d98f0e6e
Changes
4
Hide whitespace changes
Inline
Side-by-side
wiaflos/server/core/Invoicing.pm
View file @
07e399ff
...
...
@@ -1298,6 +1298,7 @@ sub sendInvoice
From
=>
$config
->
{'
invoicing
'}{'
email_from
'},
To
=>
$emailAddy
,
Bcc
=>
$config
->
{'
invoicing
'}{'
email_bcc
'},
'
Reply-To
'
=>
$config
->
{'
invoicing
'}{'
email_reply_to
'},
Subject
=>
"
Invoice:
"
.
$invoice
->
{'
Number
'},
Type
=>
'
multipart/mixed
'
);
...
...
wiaflos/server/core/Receipting.pm
View file @
07e399ff
...
...
@@ -1319,6 +1319,7 @@ sub sendReceipt
From
=>
$config
->
{'
receipting
'}{'
email_from
'},
To
=>
$emailAddy
,
Bcc
=>
$config
->
{'
receipting
'}{'
email_bcc
'},
'
Reply-To
'
=>
$config
->
{'
receipting
'}{'
email_reply_to
'},
Subject
=>
"
Receipt:
"
.
$receipt
->
{'
Number
'},
Type
=>
'
multipart/mixed
'
);
...
...
wiaflos/server/core/Statements.pm
View file @
07e399ff
...
...
@@ -359,6 +359,7 @@ sub sendStatement
From
=>
$config
->
{'
statements
'}{'
email_from
'},
To
=>
$emailAddy
,
Bcc
=>
$config
->
{'
statements
'}{'
email_bcc
'},
'
Reply-To
'
=>
$config
->
{'
statements
'}{'
email_reply_to
'},
Subject
=>
$subject
,
Type
=>
'
multipart/mixed
'
);
...
...
wiaflos/server/core/SupplierReceipting.pm
View file @
07e399ff
...
...
@@ -1144,6 +1144,7 @@ sub sendSupplierReceipt
From
=>
$config
->
{'
supplierreceipting
'}{'
email_from
'},
To
=>
$emailAddy
,
Bcc
=>
$config
->
{'
supplierreceipting
'}{'
email_bcc
'},
'
Reply-To
'
=>
$config
->
{'
supplierreceipting
'}{'
email_reply_to
'},
Subject
=>
"
Receipt:
"
.
$receipt
->
{'
Number
'},
Type
=>
'
multipart/mixed
'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment