Last active
December 11, 2019 03:39
-
-
Save JustinGrote/9586ce0431b52b4fa0012b9a8fc61e01 to your computer and use it in GitHub Desktop.
A drop-in replacement for Send-MailMessage. You can get a 100 email/day sendgrid API key for free at https://sendgrid.com
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
function Send-SendGridMailMessage { | |
[CmdletBinding()] | |
param ( | |
[Parameter(Mandatory)][String[]]$To, | |
[Parameter(Mandatory)][String]$Subject, | |
[String]$Body, | |
[Parameter(Mandatory)][String]$From, | |
[Switch]$BodyAsHtml, | |
[String]$SendGridApiKey = $env:SENDGRID_API_KEY | |
) | |
if (-not $SendGridApiKey) { | |
throw "You need to supply a Sendgrid API key either via the -SendGridApiKey parameter or by setting the SENDGRID_API_KEY environment variable" | |
} | |
$SendGridMessage = @{ | |
personalizations = @() | |
from = @{email=$from} | |
content = @(@{ | |
type = if ($BodyAsHtml) {'text/html'} else {'text/plain'} | |
value = $Body | |
}) | |
} | |
$Personalization = @{ | |
to = @() | |
subject = $Subject | |
} | |
$To.foreach{ | |
$Personalization.To += @{email=$PSItem} | |
} | |
$SendGridMessage.personalizations += $Personalization | |
$InvokeRestMethodParams = @{ | |
URI = 'https://api.sendgrid.com/v3/mail/send' | |
Authentication = 'Bearer' | |
Token = (Convertto-securestring -asplaintext -force $SendGridApiKey) | |
Method = 'POST' | |
Body = ($SendGridMessage | ConvertTo-Json -Depth 5) | |
ContentType = 'application/json' | |
} | |
Invoke-RestMethod @InvokeRestMethodParams | |
write-verbose ($sendgridmessage | ConvertTo-Json -depth 5) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment