Skip to content

Commit

Permalink
パスワード再発行時に、EC-CUBEが自動生成した初期パスワードが、管理者は送信されないように修正
Browse files Browse the repository at this point in the history
  • Loading branch information
okazy committed Mar 8, 2017
1 parent 371c080 commit 57038d0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Eccube/Service/MailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ public function sendPasswordResetNotificationMail(\Eccube\Entity\Customer $Custo
->setSubject('[' . $this->BaseInfo->getShopName() . '] パスワード変更のご確認')
->setFrom(array($this->BaseInfo->getEmail01() => $this->BaseInfo->getShopName()))
->setTo(array($Customer->getEmail()))
->setBcc($this->BaseInfo->getEmail01())
->setReplyTo($this->BaseInfo->getEmail03())
->setReturnPath($this->BaseInfo->getEmail04())
->setBody($body);
Expand Down Expand Up @@ -417,7 +416,6 @@ public function sendPasswordResetCompleteMail(\Eccube\Entity\Customer $Customer,
->setSubject('[' . $this->BaseInfo->getShopName() . '] パスワード変更のお知らせ')
->setFrom(array($this->BaseInfo->getEmail01() => $this->BaseInfo->getShopName()))
->setTo(array($Customer->getEmail()))
->setBcc($this->BaseInfo->getEmail01())
->setReplyTo($this->BaseInfo->getEmail03())
->setReturnPath($this->BaseInfo->getEmail04())
->setBody($body);
Expand Down

0 comments on commit 57038d0

Please sign in to comment.