-
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,
-
 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
-
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
-
By Patrick Troughton in forum .NET
Replies: 1
Last Post: 02-12-2003, 09:32 AM
-
By Patrick Troughton in forum .NET
Replies: 0
Last Post: 02-11-2003, 09:47 AM
-
By Patrick Troughton in forum .NET
Replies: 0
Last Post: 02-06-2003, 10:23 AM
-
By Seth Grossman [MSFT] in forum vb.announcements
Replies: 1
Last Post: 03-13-2002, 07:32 PM
-
By Bart Luyckx in forum ASP.NET
Replies: 7
Last Post: 09-25-2000, 03:36 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
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
|
Bookmarks