How to Attached an Html Document to Email
If you have this kind of error, just check the way you'r calling the email library. Be sure to add this line. $config['mailtype...
https://www.czetsuyatech.com/2021/07/codeigniter-attached-html-to-email.html
If you have this kind of error, just check the way you'r calling the email library.
Be sure to add this line.
And it might save you from lots of trouble.
Be sure to add this line.
$config['mailtype'] = 'html';
$this->email->initialize($config);
And it might save you from lots of trouble.
Post a Comment