DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2008
    Posts
    1

    Creating New Mail Profile in .net

    As my Exchange mail server is changed to another machine with upgraded version , I need to create new e-mail profile on individual user's machine for new mail server.

    I would like to have an interface which only takes username as input and create the new mail profile with this username. I want to use VB.net or ASP.net for this.

    Kindly suggest.

    Rgrds,

  2. #2
    Join Date
    May 2004
    Location
    Duluth MN
    Posts
    353
    Quote Originally Posted by sumesh_solanki
    As my Exchange mail server is changed to another machine with upgraded version , I need to create new e-mail profile on individual user's machine for new mail server.

    I would like to have an interface which only takes username as input and create the new mail profile with this username. I want to use VB.net or ASP.net for this.

    Kindly suggest.

    Rgrds,
    See if this link helps:

    How to create Mailbox in Exchange Server through VB.NET

    ...joe

  3. #3
    using System.Web.Mail;

    MailMessage mailObj = new MailMessage();

    mailObj.From = DropDownList1.SelectedValue;
    mailObj.To = Request.QueryString["Gidecek_MAIL"];
    mailObj.Subject = TXT_EMAIL_BASLIK.Text;
    mailObj.Body = "<strong>" + TXT_EMAIL_ICERIK.Text + "</strong>";
    mailObj.BodyFormat = MailFormat.Html;
    SmtpMail.SmtpServer = "localhost";
    SmtpMail.Send(mailObj);

Similar Threads

  1. Support Grows for .NET
    By Patrick Troughton in forum .NET
    Replies: 1
    Last Post: 02-12-2003, 09:32 AM
  2. Microsoft Hones .NET
    By Patrick Troughton in forum .NET
    Replies: 0
    Last Post: 02-11-2003, 09:47 AM
  3. Borland Catches .NET
    By Patrick Troughton in forum .NET
    Replies: 0
    Last Post: 02-06-2003, 10:23 AM
  4. YAG's public status report - March 7, 2002
    By Seth Grossman [MSFT] in forum vb.announcements
    Replies: 1
    Last Post: 03-13-2002, 07:32 PM
  5. Creating a ASP+ in VStudio .NET
    By Bart Luyckx in forum ASP.NET
    Replies: 7
    Last Post: 09-25-2000, 03:36 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links