Sending a basic message
To send a message without using a template, simply pass the body of the message as a string (or an array of lines) to the send() method. For example:
Простой текст$this->Email->from = 'Somebody <somebody@example.com>';$this->Email->to = 'Somebody Else <somebody.else@example.com>';$this->Email->subject = 'Test';$this->Email->send('Hello message body!');


Коментарии:
Добавить коментарий