Adarsh M Pallickal
Adarsh M Pallickal

Reputation: 821

send email with specified name as from address in ci

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

Answers (1)

Abdulla Nilam
Abdulla Nilam

Reputation: 38672

Try like this

$this->email->from('[email protected]',"Scheduler"); # can use Single quote('Scheduler') as well

Upvotes: 1

Related Questions