テンプレートはビュー (通常のページに関して) メールのレイアウトはビューのレイアウトとして (通常のページに関して)
レイアウトには、ロゴなどの一般的な要素を含める必要があります
また、データをプッシュしてコントローラーから表示するように、データをテンプレートにプッシュできます
次の例を確認してください。
カスタム EmailComponent から
public function restore_password($user_to_send_restore_link) {
$email = new CakeEmail('default');
$email->emailFormat('both');
$email->template('restore_password', 'emaillayout');
$email->to(array($user_to_send_restore_link['User']['email']));
$email->from(array(GENERAL_FROM_EMAIL => 'seqrd support team'));
$subject = 'Restore password link';
$email->subject($subject);
$email_data = array(
'hash' => $user_to_send_restore_link['User']['hash']);
$email->viewVars($email_data);
return $email->send();
}
app/View/Emails/html/restore_password.ctp
<p> Please, follow link <?php echo $this->Html->link('restore password link', Router::url(array('controller' => 'users', 'action' => 'restore_password_form', $hash), true)); ?> to restore password</p>
app/View/Layouts/Emails/html/emaillayout.ctp
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title><?php echo $title_for_layout;?></title>
</head>
<body>
<?php echo $this->fetch('content');?>
</body>
</html>
テーマは抽象化の次のステップです。すべてのメールのスタイル全体をすばやく変更できますが、コードを大幅に変更することはできません。
注: viewVars
メソッドはテンプレートだけでなく、メール レイアウトにも変数を渡します。