【发布时间】:2016-12-01 08:45:15
【问题描述】:
如何在 xampp 中从 httpd.conf 获取 ServerAdmin 电子邮件 我已经设置了
ServerAdmin test@gmail.com
在D:\xampp\apache\conf\httpd.conf;但我不知道如何在 php 中访问 ServerAdmin。
我想在我的邮件中使用ServerAdmin 电子邮件
$this->load->library('tes_email');
$this->test_email->from("test@gmail.com");
$this->test_email->to();//i don't know how to pass serverAdmin email in to
$this->test_email->subject("test test");
$this->test_email->message("test subject");
$this->test_email->send();
请帮帮我。
【问题讨论】:
标签: php apache codeigniter xampp httpd.conf