Which of the following components are utilized to send email messages from an ASP.NET webpage?
Explanation
To send emails in ASP.NET, both the System.Web.Mail.SmtpMail class and the System.Web.Mail.MailMessage class are used together. The MailMessage class represents the email content, while SmtpMail handles the sending process.