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 8668223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:09:38+00:00 2026-06-12T18:09:38+00:00

I have to create a project for my .NET classes. I came up with

  • 0

I have to create a project for my .NET classes. I came up with an idea of create email newsletter or autoresponder. I have to make it in 3 stages: 1. desktop application (in Windows Forms or WPF), 2. browser application, 3. mobile application.

Is this thing doable in .NET? I just need to know whether sending emails is possible in .NET applications and whether it’s relatively easy or too complicated to care about this idea.

  • 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-12T18:09:39+00:00Added an answer on June 12, 2026 at 6:09 pm

    .NET comes with an inbuilt function that makes sending emails super easy.
    http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.aspx

    Keep in mind that you will still need to provide .NET with an SMTP server.
    http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol

    using (SmtpClient client = new SmtpClient("smtp-server.MyDomain.com"))
    {
        client.UseDefaultCredentials = true;
    
        using (MailMessage mail = new MailMessage())
        {
            mail.Subject = subject;
            mail.Body = body;
    
            mail.From = new MailAddress("MyEmail@MyDomain.com");
            mail.To.Add("ToThisEmail@MyDomain.com");
    
            client.Send(mail);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a Windows Forms Application project by Visual Studio.Net 2008. In order
i have a problem with the asp.net MVC3. when i create a new project
I have the problem when I create blank wpf .Net 3.5 project. Visual studio
If you have the following: Asp.Net MVC 2 project having object classes that define
I create new asp.net mvc 3 project. Copy there all controllers, classes and views
I have a C++/CLI project that uses CWinFormsControl and CWinFormsView to create .NET controls
I have to create a small asp.net-application. The last such web-application I have built
In my ASP.NET MVC application, I have a project that contains all the business
I have troubles consuming unity container in ASP.NET MVC3 application. I have several project
I have created a wpf vb.net project and am trying to set a simple

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.