Wrox Programmer Forums
|
ASP.NET 1.1 As of 10/6/2005, this forum is locked as part of the reorganization described here: http://p2p.wrox.com/topic.asp?TOPIC_ID=35394. No posts have been deleted. Open ongoing discussions from the last week have been moved to either ASP.NET 1.0 and 1.1 Beginners http://p2p.wrox.com/asp-net-1-0-1-1-basics-60/ or ASP.NET 1.0 and 1.1 Professional. http://p2p.wrox.com/forum.asp?FORUM_ID=50. See my sticky post inside for more.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.1 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 21st, 2003, 11:05 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 141
Thanks: 0
Thanked 0 Times in 0 Posts
Default email

Is there a namespace for dealing with email (sending)?

Chris
__________________
Chris
 
Old August 21st, 2003, 11:19 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

[u]System.Web.Mail</u>

Dim objMessage As New System.Web.Mail.MailMessage()
objMessage.From = "..."
objMessage.To = "..."
objMessage.Subject = "..."
objMessage.Body = "..."
objMessage.BodyFormat = Mail.MailFormat.Text
System.Web.Mail.SmtpMail.SmtpServer = "mail.company.com"
System.Web.Mail.SmtpMail.Send(objMessage)


 
Old August 21st, 2003, 11:21 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 141
Thanks: 0
Thanked 0 Times in 0 Posts
Default

thanks...that looks much easier than I thought. Just part of setting up the skeleton.

Chris





Similar Threads
Thread Thread Starter Forum Replies Last Post
C# and Email iceman90289 C# 2005 8 June 25th, 2008 11:44 AM
Email through Gmail in C# tobriain C# 5 April 5th, 2007 07:57 AM
Email reports william.murray Access 3 May 11th, 2006 02:34 AM
email keyvanjan Classic ASP Basics 2 March 20th, 2006 12:05 AM
Email Component vikasp2p General .NET 1 September 22nd, 2004 09:19 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.