コード例 #1
0
ファイル: Message.php プロジェクト: Webiny/Framework
 /**
  * Appends one more address to the blind-copied list.
  *
  * @param Email $email
  *
  * @return $this
  */
 public function addBcc(Email $email)
 {
     $this->message->addBcc($email->email);
     return $this;
 }