Click here to Skip to main content
15,913,027 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: i am sorry.... Pin
Alaric_3-Jan-08 9:08
professionalAlaric_3-Jan-08 9:08 
Question[Message Deleted] Pin
Smashing_Perfect2-Jan-08 8:53
Smashing_Perfect2-Jan-08 8:53 
GeneralRe: A question on radio box Pin
Michael Sync3-Jan-08 15:24
Michael Sync3-Jan-08 15:24 
GeneralKind of a PHP Question regarding forms Pin
#realJSOP2-Jan-08 8:37
professional#realJSOP2-Jan-08 8:37 
GeneralRe: Kind of a PHP Question regarding forms Pin
Johnny ²2-Jan-08 13:13
Johnny ²2-Jan-08 13:13 
GeneralRe: Kind of a PHP Question regarding forms Pin
#realJSOP3-Jan-08 4:22
professional#realJSOP3-Jan-08 4:22 
GeneralURGENT : Configuration of SMTP Server using CDO.Message component Pin
Vipul Mehta2-Jan-08 0:10
Vipul Mehta2-Jan-08 0:10 
GeneralRe: URGENT : Configuration of SMTP Server using CDO.Message component Pin
Michael Sync2-Jan-08 5:46
Michael Sync2-Jan-08 5:46 
Hi Vipul,

I didn't work for Classic ASP for so long but I did a search about your problem in Google and I found a link that might work for you.

Sending Email Via an External SMTP Server Using CDO[^]

According the example from that article, there is a way to configure the external SMTP server..

For example:
<br />
' Get a handle on the config object and it's fields<br />
Set objConfig = Server.CreateObject("CDO.Configuration")<br />
Set Fields = objConfig.Fields<br />
<br />
' Set config fields we care about<br />
With Fields<br />
	.Item(cdoSendUsingMethod)       = cdoSendUsingPort<br />
	.Item(cdoSMTPServer)            = "smtp_server_name"<br />
	.Item(cdoSMTPServerPort)        = 25<br />
	.Item(cdoSMTPConnectionTimeout) = 10<br />
	.Item(cdoSMTPAuthenticate)      = cdoBasic<br />
	.Item(cdoSendUserName)          = "username"<br />
	.Item(cdoSendPassword)          = "password"<br />
<br />
	.Update<br />
End With


So, you can read the details in the link above and I hope it will help you.

Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)


GeneralProblem in Sending Email by Vbscript using Easymail object Pin
Sachin Pimpale1-Jan-08 23:00
Sachin Pimpale1-Jan-08 23:00 
GeneralRe: Problem in Sending Email by Vbscript using Easymail object Pin
Michael Sync1-Jan-08 23:04
Michael Sync1-Jan-08 23:04 
Generalgetting download in php Pin
Member 47726581-Jan-08 20:45
Member 47726581-Jan-08 20:45 
GeneralRe: getting download in php Pin
Johnny ²1-Jan-08 21:54
Johnny ²1-Jan-08 21:54 
Questionhow can chek the last number Pin
idsanjeevjha1-Jan-08 0:07
idsanjeevjha1-Jan-08 0:07 
GeneralRe: how can chek the last number Pin
idsanjeevjha1-Jan-08 20:56
idsanjeevjha1-Jan-08 20:56 
GeneralPHP copying Post values into session Pin
gunner_uk200031-Dec-07 2:30
gunner_uk200031-Dec-07 2:30 
GeneralRe: PHP copying Post values into session Pin
Paul Conrad31-Dec-07 10:25
professionalPaul Conrad31-Dec-07 10:25 
GeneralRe: PHP copying Post values into session Pin
#realJSOP2-Jan-08 3:18
professional#realJSOP2-Jan-08 3:18 
GeneralRe: PHP copying Post values into session Pin
Johnny ²31-Dec-07 22:03
Johnny ²31-Dec-07 22:03 
GeneralRe: PHP copying Post values into session Pin
#realJSOP2-Jan-08 3:23
professional#realJSOP2-Jan-08 3:23 
GeneralRe: PHP copying Post values into session Pin
gunner_uk20003-Jan-08 1:54
gunner_uk20003-Jan-08 1:54 
Questionwhy reflected schemas? Pin
Soumini Ramakrishnan31-Dec-07 0:42
Soumini Ramakrishnan31-Dec-07 0:42 
AnswerRe: why reflected schemas? Pin
Paul Conrad31-Dec-07 10:26
professionalPaul Conrad31-Dec-07 10:26 
Generalweb widget Pin
Shafaqat Ali30-Dec-07 21:58
Shafaqat Ali30-Dec-07 21:58 
GeneralRe: web widget Pin
Michael Sync30-Dec-07 22:04
Michael Sync30-Dec-07 22:04 
GeneralRe: web widget Pin
Shafaqat Ali31-Dec-07 0:46
Shafaqat Ali31-Dec-07 0:46 

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.