| @@ 96-100 (lines=5) @@ | ||
| 93 | : EmailHelper::qEncode($this->_sender_name) . ' <' . $this->_sender_email_address . '>'; |
|
| 94 | ||
| 95 | // Build the 'Reply-To' header field body |
|
| 96 | if (!empty($this->_reply_to_email_address)) { |
|
| 97 | $reply_to = empty($this->_reply_to_name) |
|
| 98 | ? $this->_reply_to_email_address |
|
| 99 | : EmailHelper::qEncode($this->_reply_to_name) . ' <' . $this->_reply_to_email_address . '>'; |
|
| 100 | } |
|
| 101 | ||
| 102 | if (!empty($reply_to)) { |
|
| 103 | $this->_header_fields = array_merge( |
|
| @@ 229-233 (lines=5) @@ | ||
| 226 | : EmailHelper::qEncode($this->_sender_name) . ' <' . $this->_sender_email_address . '>'; |
|
| 227 | ||
| 228 | // Build the 'Reply-To' header field body |
|
| 229 | if (!empty($this->_reply_to_email_address)) { |
|
| 230 | $reply_to = empty($this->_reply_to_name) |
|
| 231 | ? $this->_reply_to_email_address |
|
| 232 | : EmailHelper::qEncode($this->_reply_to_name) . ' <' . $this->_reply_to_email_address . '>'; |
|
| 233 | } |
|
| 234 | ||
| 235 | if (!empty($reply_to)) { |
|
| 236 | $this->_header_fields = array_merge( |
|