Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to send html emails (newbie)

Status
Not open for further replies.
Jun 27, 2002
47
TT
ok i have this html page i want to send as an html email and i don't know how,

first time i'm trying this...

can you guys hellp me? we have a cobalt raq4 web server that's asp enabled, if that'll help.

thanx
 
If you're on windows NT or 2000 use CDONTS or CDOSYS look it up on the MS website. It works great.
 
On cdnots the code is as follows:

<%
Set SendMail = Server.CreateObject(&quot;CDONTS.NewMail&quot;)

SendMail.To = &quot;send_here@vzio.com&quot;
SendMail.Body = &quot;Some text for the email&quot;
SendMail.From = &quot;from_me@vzio.com&quot;
SendMail.Subject = &quot;The subject&quot;

SendMail.BodyFormat=0

SendMail.Send

Set SendMail=nothing
%> www.vzio.com
ASP WEB DEVELOPMENT



 
i am using a cobalt raq4 web/email server... so how do i use that code to accomplish this
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top