| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentBooking\App\Services; |
| 4 |
|
| 5 |
class Mailer |
| 6 |
{ |
| 7 |
public static function send($to, $subject, $body, $headers = [], $attachments = []) |
| 8 |
{ |
| 9 |
$headers[] = 'Content-Type: text/html; charset=UTF-8'; |
| 10 |
|
| 11 |
return wp_mail($to, $subject, $body, $headers, $attachments); |
| 12 |
} |
| 13 |
} |
| 14 |
|