Multiple choice technology web 2.0

Which of the following method is correct to send an Email Message?

  1. Send(from,to,subject,body)

  2. Send(from,body,,to,subject)

  3. Send(from,to,body,subject)

  4. Send(to,from,subject,body)

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The SmtpClient.Send method (specifically the overload taking four string parameters) has the signature Send(string from, string to, string subject, string body). The other options place the parameters in incorrect positions.