public function send($type, array $to, $subject, $html)
 {
     $response = BackgroundUtil::post('/mail/send/' . $type)->body(['to' => $to, 'subject' => $subject, 'html' => $html], 'json')->send();
     $body = (array) $response->body;
     return $body;
 }