We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82ef9e8 commit 296e296Copy full SHA for 296e296
app/code/Magento/User/Model/User.php
@@ -434,6 +434,7 @@ public function sendPasswordResetConfirmationEmail()
434
/**
435
* Send email to when password is resetting
436
*
437
+ * @throws NotificationExceptionInterface
438
* @return $this
439
* @deprecated 100.1.0
440
*/
@@ -457,7 +458,7 @@ public function sendNotificationEmailsIfRequired()
457
458
$this->notificator->sendCreated($this);
459
} elseif ($changes = $this->createChangesDescriptionString()) {
460
//User changed.
- $this->sendUserNotificationEmail($changes);
461
+ $this->notificator->sendUpdated($this, explode(', ', $changes));
462
}
463
464
return $this;
0 commit comments