メインコンテンツまでスキップ

はじめに

メール送信のための各種関数を提供します

使用方法

Application::getClassメソッドを通じてMailクラスを読み込むことができます。

Controller
$mail = $this->getClass('Tool/Mail');
$mail->subject('メールの件名');
$mail->body('メールの本文');

$mail->send('mail@example.com', 'John Doe', 'from@example.com');

メソッド