Im not that awesome at php to please forgivr me.
So I am sending a html email using PHP.
After some research I have built one using tables and writ a PHP sending script similar to some many of you will of used.
I know inline styling seems to be the most commonly used way to add style.
When I define my $message variable before my $headers, is something LIKE this possible?
$message = "
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>BPN UK Contact Request</title>
<style type="text/css">
.exampleclass {
CSS Rules
}
</style>
REST OF HTML LAYOUT, INCEPTION TABLES ETC ETC
"
Or do I have to go through and inline style it in the tags etc, its just that way seems a lot more work and more restricting.
Sorry if this is a stupid question.