I'm trying to have a css file be included in an email but I'm not really sure if that's possible.
What I've tried so far is to send a complete valid html markup within the message parameter and include the css as I normally would in a file but that didn't work. Apparently message is the body of the email.
So then I guess it must be sent within the headers parameter but I'm not really sure how exactly to have that set up?
Here're my headers
$headers = "From: $from\r\nReply-To: noreply@".strtolower(website_name);
$headers .= "\nMIME-Version: 1.0\nContent-Type: text/html; charset=\"utf-8\"\r\n
What would I need to put in order to include http://site.com/style.css as a valid style to apply in the email?