mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Merge pull request #816 from shama/patch-email-component
Fix $readReceipt variable in EmailComponent::send
This commit is contained in:
commit
f1c2b1fba8
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ class EmailComponent extends Component {
|
|||
if (!empty($this->return)) {
|
||||
$lib->returnPath($this->_formatAddresses((array)$this->return));
|
||||
}
|
||||
if (!empty($readReceipt)) {
|
||||
if (!empty($this->readReceipt)) {
|
||||
$lib->readReceipt($this->_formatAddresses((array)$this->readReceipt));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue