我正在使用CakeEmail功能。CakeEmail-有沒有辦法發送一個數組而不是var
我用來做這樣的(見viewVar)
$mail->from(authComponent::user('email'))
->to($this->Session->read('Site.email'))
->subject($this->Session->read('Site.name').' : New order No. '.$this->Basket->id)
->emailFormat('html')
->template('orderconfirmation')
->viewVars(array('title'=>'vlaue'))
->send();
我NEDD發送大量數據的幾個boght產品的數據。它可以有一個產品,但它可以有10個產品。
然後,我想發送一個數組$ detailOfProducts,這樣,在我的郵件模板中,我將使用循環來顯示內容。
I tried to change like this but without success
$mail->from(authComponent::user('email'))
->to($this->Session->read('Site.email'))
->subject($this->Session->read('Site.name').' : New order No. '.$this->Basket->id)
->emailFormat('html')
->template('orderconfirmation')
->viewVars($detailOfProducts)
->send();
您是否知道解決方案?
感謝很多