Which of the following is the correct syntax to send an email alert with subject 'Alert' and body 'Disk space low' using Send-MailMessage?
ASend-MailMessage -Recipient 'admin@example.com' -Title 'Alert' -Message 'Disk space low' -Server 'smtp.example.com'
BSend-Mail -To 'admin@example.com' -Subject 'Alert' -Body 'Disk space low' -Server 'smtp.example.com'
CSend-MailMessage -To 'admin@example.com' -Subject 'Alert' -Body 'Disk space low' -SmtpServer 'smtp.example.com'
DSend-EmailMessage -To 'admin@example.com' -Subject 'Alert' -Body 'Disk space low' -Smtp 'smtp.example.com'