Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8315799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:12:50+00:00 2026-06-08T21:12:50+00:00

Is the MailDefinition Class only for use with ASP? It seems to have everything

  • 0

Is the MailDefinition Class only for use with ASP? It seems to have everything I need, but apparently I need to add the SMTP server info in a Web.Config file. I want to use this class in a WinForms app. Is this possible?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T21:12:51+00:00Added an answer on June 8, 2026 at 9:12 pm

    Sure, you should be able to use it from a WinForms app. You need to pass the SMTP host name to the System.Net.Mail.SmtpClient constructor. Something like this:

    using System.Net.Mail;
    using System.Web.UI.WebControls;
    
    // namespace etc
    
    private void SendEmail()
    {
        string to = "to@somewhere.com,to2@somewhere.com";
    
        MailDefinition mailDefinition = new MailDefinition();
        mailDefinition.IsBodyHtml = false;
    
        string host = "smtpserver";  // Your SMTP server name.
        string from = "from@somewhere.com";
        int port = -1;               // Your SMTP port number. Defaults to 25.
    
        mailDefinition.From = from;
        mailDefinition.Subject = "Boring email";
        mailDefinition.CC = "cc@somwhere.com,cc2@somwhere.com";
    
        List<System.Net.Mail.Attachment> mailAttachments = new List<System.Net.Mail.Attachment>();
        // Add any attachments here
    
        using (MailMessage mailMessage = mailDefinition.CreateMailMessage(to, null, "Email body", new System.Web.UI.Control()))
        {
            SmtpClient smtpClient = new SmtpClient(host);
            if (port != -1)
            {
                smtpClient.Port = port;
            }
            foreach (System.Net.Mail.Attachment mailAttachment in mailAttachments)
            {
                mailMessage.Attachments.Add(mailAttachment);
            }
            smtpClient.Send(mailMessage);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP PasswordRecovery module on a page, the code comes up like
I have a project requirement that we need to attach an HTML formatted log
I have an asp.net 4.0 web site that generates email alerts based on several
I have an asp.net 4.0 website and I'm using the PasswordRecovery control for a
In CreateUserWizard I have set: DisableCreatedUser=True LoginCreatedUser=False but the user is logged on after
In web forms I used MailDefinition class to send email templates. How can I
When creating a MailMessage object by calling the CreateMailMessage method on the MailDefinition class,
I have a new asp.net 4.0 website. I've added the password recovery control. I
suppose i need to send mail to customer with customer detail and his order
I assume that web controls (such as the PasswordRecovery control) use SmtpClient to send

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.