Last active
June 22, 2021 15:56
-
-
Save mharwooduk/e083618ec78680e3b965cbe1f72561bd to your computer and use it in GitHub Desktop.
Custom HTML Email for PowerShell
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width,initial-scale=1"> | |
| <meta name="x-apple-disable-message-reformatting"> | |
| <title></title> | |
| <!--[if mso]> | |
| <noscript> | |
| <xml> | |
| <o:OfficeDocumentSettings> | |
| <o:PixelsPerInch>96</o:PixelsPerInch> | |
| </o:OfficeDocumentSettings> | |
| </xml> | |
| </noscript> | |
| <![endif]--> | |
| <style> | |
| table, | |
| td, | |
| div, | |
| h1, | |
| p { | |
| font-family: Arial, sans-serif; | |
| } | |
| </style> | |
| </head> | |
| <body style="margin:0;padding:0;"> | |
| <table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0"> | |
| <tr> | |
| <td align="center" style="padding:0;"> | |
| <table role="presentation" | |
| style="width:800px;border-collapse:collapse;border-spacing:0;text-align:left;"> | |
| <!--Logo--> | |
| <tr> | |
| <td align="center" style="padding:40px 0 10px 0"> | |
| <img src="cid:logo.png" alt="" width="350" style="height:auto;display:block;" /> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td style="padding:10px 10px 10px 10px;"> | |
| <table role="presentation" | |
| style="width:100%;border-collapse:collapse;border:0;border-spacing:0;"> | |
| <!--First chunk--> | |
| <tr> | |
| <td style="padding:0 0 20px 0"> | |
| <h1 | |
| style="font-size:38px;margin:0 0 20px 0;font-family:Arial,sans-serif;text-align:center;"> | |
| Information Technology | |
| </h1> | |
| <p | |
| style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family:Arial,sans-serif;"> | |
| Dear $firstname, | |
| </p> | |
| <h2 style="font-size:22px;margin:0 0 10px 0;font-family:Arial,sans-serif"> | |
| Welcome! | |
| </h2> | |
| <p | |
| style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family:Arial,sans-serif;"> | |
| Generic text can go here | |
| </p> | |
| <h2 style="font-size:22px;margin:0 0 10px 0;font-family:Arial,sans-serif"> | |
| Your Login Information | |
| </h2> | |
| <p> | |
| style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family:Arial,sans-serif;"> | |
| More generic text | |
| </p> | |
| <p> | |
| style="margin:0;font-size:16px;line-height:24px;font-family:Arial,sans-serif;"> | |
| </p> | |
| </td> | |
| </tr> | |
| </table | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| <!--Footer--> | |
| <tr> | |
| <td style="padding:30px;background:#272a36;"> | |
| <table role="presentation" | |
| style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family:Arial,sans-serif;"> | |
| <tr> | |
| <td style="padding:0;width:50%;" align="center"> | |
| <p style="margin:0;font-size:18px;line-height:16px;font-family:Arial,sans-serif;color:#ffffff;"> | |
| For an additional support, or if you have any questions, please | |
| send an email to <a href="mailto:help@example.com" | |
| style="color:#d6d6d6;text-decoration:underline;">help@example.com</a> | |
| </p> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| </table> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment