Click here to Skip to main content
15,885,546 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: CSS tables Vs. HTML tables Pin
DavidNohejl6-Feb-07 4:07
DavidNohejl6-Feb-07 4:07 
AnswerRe: CSS tables Vs. HTML tables Pin
MatrixCoder6-Feb-07 7:39
MatrixCoder6-Feb-07 7:39 
AnswerRe: CSS tables Vs. HTML tables Pin
Guffa6-Feb-07 10:26
Guffa6-Feb-07 10:26 
QuestionRe: CSS tables Vs. HTML tables [modified] Pin
MayyMagdy7-Feb-07 1:26
MayyMagdy7-Feb-07 1:26 
AnswerRe: CSS tables Vs. HTML tables Pin
Guffa7-Feb-07 8:50
Guffa7-Feb-07 8:50 
AnswerRe: CSS tables Vs. HTML tables Pin
blue_arc7-Feb-07 1:17
blue_arc7-Feb-07 1:17 
QuestionASP email form Pin
alamb2005-Feb-07 3:04
alamb2005-Feb-07 3:04 
AnswerRe: ASP email form Pin
alamb2005-Feb-07 4:30
alamb2005-Feb-07 4:30 
Hi All,

I have made some progress I can now get an email to go to where I want but it does not contain the text in tne table, is this possible?

New code:

<%
Dim ObjSendMail
Set ObjSendMail = CreateObject("CDO.Message")

'This section provides the configuration information for the remote SMTP server.

ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'Send the message using the network (SMTP over the network).
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") ="192.9.200.14"
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False 'Use SSL for the connection (True or False)
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60

' If your server requires outgoing authentication uncomment the lines bleow and use a valid email address and password.
'ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic (clear-text) authentication
'ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") ="me@here.com"
'ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") ="whatever"

ObjSendMail.Configuration.Fields.Update

'End remote SMTP server configuration section==

ObjSendMail.To = Request.Form("To")
ObjSendMail.From = Request.Form("From")
ObjSendMail.Subject = "Support Reply"

' we are sending a text email.. simply switch the comments around to send an html email instead
'ObjSendMail.HTMLBody = "this is the body"
ObjSendMail.TextBody = "this is the body"

ObjSendMail.Send

Set ObjSendMail = Nothing
%>
QuestionPDF Signature Pin
Member 36510615-Feb-07 0:57
Member 36510615-Feb-07 0:57 
AnswerRe: PDF Signature Pin
Bradml5-Feb-07 19:17
Bradml5-Feb-07 19:17 
QuestionHow Can I make my web page as www.inbox.com ? Pin
Ahmed Fathy4-Feb-07 23:41
Ahmed Fathy4-Feb-07 23:41 
AnswerRe: How Can I make my web page as www.inbox.com ? Pin
Bradml4-Feb-07 23:47
Bradml4-Feb-07 23:47 
Questionhow to work with different browsers Pin
Amit Sk Sharma4-Feb-07 22:10
Amit Sk Sharma4-Feb-07 22:10 
AnswerRe: how to work with different browsers Pin
Bradml4-Feb-07 22:14
Bradml4-Feb-07 22:14 
GeneralRe: how to work with different browsers Pin
Guffa5-Feb-07 1:13
Guffa5-Feb-07 1:13 
JokeRe: how to work with different browsers Pin
DavidNohejl6-Feb-07 4:17
DavidNohejl6-Feb-07 4:17 
AnswerRe: how to work with different browsers Pin
Pradipta Basu6-Feb-07 8:36
Pradipta Basu6-Feb-07 8:36 
QuestionBasic template :-) Pin
john344-Feb-07 21:45
john344-Feb-07 21:45 
AnswerRe: Basic template :-) Pin
Bradml4-Feb-07 22:13
Bradml4-Feb-07 22:13 
GeneralRe: Basic template :-) Pin
john344-Feb-07 23:08
john344-Feb-07 23:08 
GeneralRe: Basic template :-) Pin
Bradml4-Feb-07 23:10
Bradml4-Feb-07 23:10 
GeneralRe: Basic template :-) Pin
badgrs4-Feb-07 23:50
badgrs4-Feb-07 23:50 
GeneralRe: Basic template :-) Pin
Bradml4-Feb-07 23:54
Bradml4-Feb-07 23:54 
QuestionDoes anyone know why ...? Pin
Rojan Gh.3-Feb-07 10:52
professionalRojan Gh.3-Feb-07 10:52 
AnswerRe: Does anyone know why ...? Pin
Guffa3-Feb-07 12:06
Guffa3-Feb-07 12:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.