08-08-2012, 07:05 AM
[eluser]TheoR74[/eluser]
I am attempting to send an email to an iPhone as a Text Message. All is fine, except that the subject has ?utf-8?Q? before the actual subject. When I send the same message to a regular email address, it works fine.
Here is the code:
I'm not setting any config settings.
I am attempting to send an email to an iPhone as a Text Message. All is fine, except that the subject has ?utf-8?Q? before the actual subject. When I send the same message to a regular email address, it works fine.
Here is the code:
Code:
$this->load->library('email');
$this->email->from('[email protected]', 'Test User');
$this->email->to($val);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();
I'm not setting any config settings.