Hey guys,
I need a special header
header (“Content-Type: application/vnd.fdf”);
How could I set this in my controller?
Hey guys,
I need a special header
header (“Content-Type: application/vnd.fdf”);
How could I set this in my controller?
Hi,
try $this->response->setHeader(‘Content-Type’, ‘application/vnd.fdf’);
It works thank you!