moved powershill script

This commit is contained in:
jblu 2022-07-10 21:04:34 -05:00
parent 38188c7a8f
commit 76c2727b84

View File

@ -0,0 +1,11 @@
$smtpserver = "mail.globalscape.com"
$from = "watchdog@server.com"
$to = "jonathan.branan@helpsystems.com"
$subject = "Folder Watch Dog"
$port = 25
$body = "Hi there,<br />Folders reaching the limit:<br /><br />"
#Send the email
Send-MailMessage -smtpserver $smtpserver -Port $port -from $from -to $to -subject $subject -body $body -bodyashtml