Skip to content

Instantly share code, notes, and snippets.

@rasimmers
Created January 30, 2020 02:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rasimmers/05fe8bf626b8e0137a93a6163e3e7b05 to your computer and use it in GitHub Desktop.
Save rasimmers/05fe8bf626b8e0137a93a6163e3e7b05 to your computer and use it in GitHub Desktop.
$user = 'Sam'
$html = @"
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta http-equiv="Content-Language" content="en-gb">
<title>WELCOME</title>
<style type="text/css">
table.MsoNormalTable {
font-size: 10.0pt;
font-family: "Times New Roman", "serif";
}
p.MsoNormal {
margin-bottom: .0001pt;
font-size: 11.0pt;
font-family: "Calibri", "sans-serif";
margin-left: 0cm;
margin-right: 0cm;
margin-top: 0cm;
}
</style>
</head>
<body>
<p>Welcome $user</p>
</body>
</html>
"@
$html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment