How can add email signature in codeigniter?

早过忘川 提交于 2020-01-05 10:28:10

问题


I have a codeigniter function to send emails.Its working fine,but the only problem is email signature id not adding to my email. I am using gmail to send email. i set email signature in gmail configuration.

How can add email signature in codeigniter?


回答1:


You can use views for this

    // views/email_message.php
    <?php echo $this->load->view('email/message', $message_data(), TRUE) ?>
    <?php echo $this->load->view('email/signature', $signature_data(), TRUE) ?>

and then you can pass this to your email message:

// in your controller
$message = $this->load->view('views/email_message', $data(), TRUE);

// configure email options, etc.
...
$this->email->message($message);

// send the email


来源:https://stackoverflow.com/questions/16455021/how-can-add-email-signature-in-codeigniter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!