作成 2010.01.05
更新 2011.11.27
更新 2011.11.27
PowerShell でメール送信
Timeout のデフォルトは 100 * 1000 ms です。
$mail = New-Object System.Net.Mail.SmtpClient("smtp_sv.example.lan") $mail.Timeout = 30 * 1000 $mail.Send("from@example.lan","to@example.lan","件名","本文")参照
タグ: PowerShell