Reputation: 821
I am using CI
I send email using CI library. Its working fine. I want a slight change. When i send email from [email protected]. then the inbox title abc. i want to change that to 'scheduler'.
Eg:
$this->email->to('[email protected]');
$this->email->from('[email protected]');
$this->email->subject('Meeting Reminder');
After sending the mail. The inbox display abc as heading. Iwant to change it.
Thanks
Upvotes: 1
Views: 45
Reputation: 38672
Try like this
$this->email->from('[email protected]',"Scheduler"); # can use Single quote('Scheduler') as well
Upvotes: 1