Created
September 21, 2018 19:35
-
-
Save robderickson/325f78711b9727950f88884684b9edf3 to your computer and use it in GitHub Desktop.
HtmlEmailStyle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Html = @" | |
<html> | |
<head> | |
<style> | |
body { | |
font-family: Calibri, sans-serif; | |
font-size: 11pt; | |
} | |
h2 { | |
color: #0099ff; | |
} | |
th { | |
background-color: #CCC; | |
} | |
th, td { | |
padding: 5px; | |
} | |
</style> | |
</head> | |
<body> | |
$HtmlBody | |
</body> | |
</html> | |
"@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment