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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:58:45+00:00 2026-05-16T05:58:45+00:00

Im working on a legacy app that has this logic in its code that

  • 0

Im working on a legacy app that has this logic in its code that I cant modify unfortunately. I have the proper settings in the web.config and was wondering if i list the proper SMTP server would the web.config settings take care of the credentials?

If not what options do i have for sending email out with this code?

  string str13 = "";
    str13 = StringType.FromObject(HttpContext.Current.Application["MailServer"]);
    if (str13.Length > 2)
    {
        SmtpMail.SmtpServer = str13;
    }
    else
    {
        SmtpMail.SmtpServer = "localhost";
    }
    SmtpMail.Send(message);
  • 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-05-16T05:58:46+00:00Added an answer on May 16, 2026 at 5:58 am

    System.Web.Mail does not expose any settings for specifying credentials, unfortunately. It is possible to send authenticated emails, though, because System.Web.Mail is built on top of CDOSYS. Here’s a KB article which describes how to do it, but you basically have to modify some properties on the message itself:

    var msg = new MailMessage();
    if (userName.Length > 0)
    {
        string ns = "http://schemas.microsoft.com/cdo/configuration/";
        msg.Fields.Add(ns + "smtpserver", smtpServer);
        msg.Fields.Add(ns + "smtpserverport", 25) ;
        msg.Fields.Add(ns + "sendusing", cdoSendUsingPort) ;
        msg.Fields.Add(ns + "smtpauthenticate", cdoBasic); 
        msg.Fields.Add(ns + "sendusername", userName); 
        msg.Fields.Add(ns + "sendpassword", password); 
    }
    msg.To = "someone@domain.com"; 
    msg.From = "me@domain.com";
    msg.Subject = "Subject";
    msg.Body = "Message";
    SmtpMail.Send(msg);
    

    Whether that works for your situation or not, I’m not sure….

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working with a legacy Java app that has no logging and just prints
I'm working on a legacy Java App that has about 6k warnings that I
I am working on a legacy app that uses Spring Security 2.0.4. I have
Probably a novice question: I'm working with some legacy code that has an implementation
I have some really complicated legacy code I've been working on that crashes when
Bakground: I've got a legacy app I'm working on that uses DATE types for
I'm working on a legacy system that has uses stored procs, business objects and
I'm working on a legacy VB6 app here at work, and it has been
I have a Rails application that has to co-exist with a very old legacy
We have a legacy VB6 app, which is critical to our business. We're working

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.