Skip to content

Instantly share code, notes, and snippets.

@barnettjw
barnettjw / mail.html
Created September 20, 2022 21:29
HTML Email Template
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="format-detection" content="telephone=no" />
<!--[if mso]>
<style type="text/css">
table { border-collapse: collapse;}
</style>
@barnettjw
barnettjw / Add-MemberToDistro.ps1
Created January 10, 2023 19:47
Migrate Distro List Members
function Format-Name(){
param($name)
$array = $name -split ' '
[pscustomobject]@{
FirstName = $array[0].t
LastName = $array[1]
DisplayName = "$($array[1]), $($array[0])"
}