Format code using php-cs-fixer
This commit is contained in:
parent
43d7dc92cd
commit
d52c6184b9
352 changed files with 17473 additions and 17041 deletions
|
@ -2,20 +2,19 @@
|
|||
|
||||
class Application_Model_Email
|
||||
{
|
||||
|
||||
/**
|
||||
* Send email
|
||||
* Send email.
|
||||
*
|
||||
* @param string $subject
|
||||
* @param string $message
|
||||
* @param mixed $to
|
||||
* @return boolean
|
||||
* @param string $subject
|
||||
* @param string $message
|
||||
* @param mixed $to
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public static function send($subject, $message, $to) {
|
||||
|
||||
public static function send($subject, $message, $to)
|
||||
{
|
||||
$headers = sprintf('From: %s <%s>', SAAS_PRODUCT_BRANDING_NAME, LIBRETIME_EMAIL_FROM);
|
||||
|
||||
return mail($to, $subject, $message, $headers);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue