Welcome Guest, Not a member yet? Register   Sign In
Removing X-Mailer: CodeIgniter - possible?
#1

[eluser]stef25[/eluser]
more client paranoia. he doesnt want people to know CI is behind is app, based on seeing "X-Mailer: CodeIgniter" in emails that are sent out. Any way to remove this or change CodeIgniter to something else?
#2

[eluser]stef25[/eluser]
got it, changed var $useragent to something else on line 31 of the email class.
#3

[eluser]Sam Dark[/eluser]
You can change it without changing the class itself:

Code:
$this->load->library('email');

$config['useragent'] = 'My cool mailer';
$this->email->initialize($config);

...

$this->email->send();




Theme © iAndrew 2016 - Forum software by © MyBB