LOGO AND SMS SEND TO EMAIL
Controler
SMS with logo send
$to = $this->input->post('email');
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$headers .= 'From: cloudhash <info@cloudhash.live>' . "\r\n";
$subject = 'Thank you for joining the cloudhash..';
$message = "<html><head></head><body>";
$message .= '<img src="'.base_url().'/assets/images/311.png"></body></html>';
$message .= '
Respected <b style="color:orange">'.$this->input->post('f_name').'</b><br>
Your OTP is '.$otp.'
Thank you for joining the cloudhash..<br>
Looking forward to a continuous and a fruitful business partnership with you.
<br>
Regards,
<br>
cloudhash';
mail($to,$subject,$message,$headers);
Comments
Post a Comment