Click here to Skip to main content
15,891,136 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Javascript - Dynamic arrays [modified] Pin
fly90417-Mar-09 5:56
fly90417-Mar-09 5:56 
GeneralRe: Javascript - Dynamic arrays Pin
fly90417-Mar-09 9:37
fly90417-Mar-09 9:37 
Question"ASP" Email sending problem.. [modified] Pin
D.Manivelan16-Mar-09 4:27
D.Manivelan16-Mar-09 4:27 
AnswerRe: "ASP" Email sending problem.. Pin
tech60316-Mar-09 17:46
tech60316-Mar-09 17:46 
GeneralRe: "ASP" Email sending problem.. Pin
D.Manivelan17-Mar-09 0:57
D.Manivelan17-Mar-09 0:57 
GeneralRe: "ASP" Email sending problem.. Pin
tech60317-Mar-09 3:18
tech60317-Mar-09 3:18 
GeneralRe: "ASP" Email sending problem.. Pin
D.Manivelan18-Mar-09 2:08
D.Manivelan18-Mar-09 2:08 
GeneralRe: "ASP" Email sending problem.. Pin
tech60318-Mar-09 4:17
tech60318-Mar-09 4:17 
It could be that your ISP is blocking mail going out from your local server, or other things really hard to say without seeing the configuration. You could however try to use an outside mail server if you have one and set CDOSYS to authenticate like the following:

Set myMail = CreateObject("CDO.Message")


//now set the mail server
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.yourdomain.com"

//set the port
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25

//set code to authenticate
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1

//set the email address for authentication
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "username@yourdomain.com"

//set password for authentication
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password"

myMail.Subject="Sending email with CDO"
myMail.From="dmanivelan@siminfosystems.com"
myMail.To="dmanivelan@siminfosystems.com"
myMail.Bcc="dmanivelan@siminfosystems.com"
myMail.Cc="dmanivelan@siminfosystems.com"
myMail.TextBody="Testing." & Time
myMail.Send
set myMail=nothing

Let me know if that helps.

Matthew Vass
QA Analyst
mvass@hostmysite.com
http://www.hostmysite.com?utm_source=bb[^]
GeneralRe: "ASP" Email sending problem.. Pin
D.Manivelan19-Mar-09 18:46
D.Manivelan19-Mar-09 18:46 
GeneralRe: "ASP" Email sending problem.. Pin
tech60320-Mar-09 4:43
tech60320-Mar-09 4:43 
GeneralRe: "ASP" Email sending problem.. Pin
D.Manivelan22-Mar-09 18:43
D.Manivelan22-Mar-09 18:43 
GeneralRe: "ASP" Email sending problem.. Pin
tech60324-Mar-09 3:32
tech60324-Mar-09 3:32 
QuestionAjax enabled page stops responding after kept idle for some time Pin
Member 56545116-Mar-09 2:08
Member 56545116-Mar-09 2:08 
Questionsending emails on localhost Pin
NetQuestions15-Mar-09 22:29
NetQuestions15-Mar-09 22:29 
AnswerRe: sending emails on localhost Pin
Marc Firth15-Mar-09 23:24
Marc Firth15-Mar-09 23:24 
GeneralRe: sending emails on localhost Pin
tech60316-Mar-09 17:51
tech60316-Mar-09 17:51 
GeneralRe: sending emails on localhost Pin
NetQuestions19-Mar-09 3:11
NetQuestions19-Mar-09 3:11 
QuestionPhysical key/keyboard layout detection in JS Pin
eesheesh15-Mar-09 11:15
eesheesh15-Mar-09 11:15 
Questionexecuting php code from mysql Pin
Ahmad Hamid15-Mar-09 6:27
Ahmad Hamid15-Mar-09 6:27 
AnswerRe: executing php code from mysql Pin
Mohammad Dayyan15-Mar-09 22:13
Mohammad Dayyan15-Mar-09 22:13 
AnswerRe: executing php code from mysql Pin
Marc Firth15-Mar-09 23:43
Marc Firth15-Mar-09 23:43 
GeneralRe: executing php code from mysql Pin
Ahmad Hamid16-Mar-09 0:08
Ahmad Hamid16-Mar-09 0:08 
GeneralRe: executing php code from mysql Pin
Marc Firth16-Mar-09 1:39
Marc Firth16-Mar-09 1:39 
QuestionI AM JUST GETTING STARTED Pin
patrice pilgrim15-Mar-09 2:29
patrice pilgrim15-Mar-09 2:29 
AnswerRe: I AM JUST GETTING STARTED Pin
scottgp15-Mar-09 10:24
professionalscottgp15-Mar-09 10:24 

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.