IMMREX7
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
namespace App\Http;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Client;
use Illuminate\Support\Facades\Log;
use Auth;
/**
* Description of SMS Api
*
* @author HKCL
*/
class SendEmailAPI {
static function sendEmail($to, $message, $school, $subject) {
$from = $school->email;
$headers = 'From: ' . $from . "\r\n";
$headers .= 'X-Mailer: PHP/' . phpversion();
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
mail($to, $subject, $message, $headers);
return 1;
}
}
Copyright © 2021 -