The issue:
Cannot get Safari to view PDF attachments in the browser, it always just downloads.
The fix option 1:
Install the Open PDF v1.5 add-on:
The fix option 2:
Add this code to your src/config.php file:
Cannot get Safari to view PDF attachments in the browser, it always just downloads.
The fix option 1:
Install the Open PDF v1.5 add-on:
The fix option 2:
Add this code to your src/config.php file:
Code:
$c->extend('inlineImageTypes', function(array $imageTypes)
{
$imageTypes['pdf'] = 'application/pdf';
return $imageTypes;
});