-
Notifications
You must be signed in to change notification settings - Fork 116
Closed
Labels
Description
I've defined my CSS files in my configuration, yet when I do, it always complains about not being able to find css/email.css, for file_get_contents. Which is accurate, no such file exists for that, because it's not using the full public_path, which IS set in my config:
return [
'css-files' => [
public_path('css/email.css')
]
];
So not sure what's going on here, but as it stands it's straight up not working.
Update: I found that if you're doing this with config, you shouldn't also have a link stylesheet in your html, so I removed that, no error - but also - zero styling/inline styles. Just can't seem to get this library to work as expected.
johncarter- and andhisan