Which of the following is the correct syntax to send an email alert using PowerShell's Send-MailMessage cmdlet?
ASend-MailMessage -Sender 'admin@example.com' -Receiver 'user@example.com' -Title 'Alert' -Content 'Issue detected' -Server 'smtp.example.com'
BSend-Mail -From 'admin@example.com' -To 'user@example.com' -Subject 'Alert' -Body 'Issue detected' -Server 'smtp.example.com'
CSend-MailMessage -From 'admin@example.com' -To 'user@example.com' -Subject 'Alert' -Body 'Issue detected' -SmtpServer 'smtp.example.com'
DSend-Email -From 'admin@example.com' -To 'user@example.com' -Subject 'Alert' -Body 'Issue detected' -SmtpServer 'smtp.example.com'