|
 |
asp_cdo thread: CDONTS Can't send messege in my domain
Message #1 by duarte_calderon@h... on Wed, 18 Apr 2001 20:47:52
|
|
The function I have below sends e-mail to any address I need. The problem
is that when I try an address in our own domain, it does not arrive. It
causes NO error, but the messege gets lost.
function sendMessege()
{
var objSendMail = new ActiveXObject("CDONTS.NewMail");
objSendMail.From="someone@s...";
objSendMail.To= "me@s...";
objSendMail.Subject="Feedback from...";
objSendMail.MailFormat=1;
objSendMail.BodyFormat=1;
objSendMail.Body="This is some messege";
objSendMail.Send();
objSendMail = null;
Response.Write("Messege Sent");
}
any one with this problem before?
thank,
Marco
Message #2 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Thu, 19 Apr 2001 10:45:10 +0100
|
|
have you checked your badmail directory?
-----Original Message-----
From: duarte_calderon@h... [mailto:duarte_calderon@h...]
Sent: Wednesday, April 18, 2001 9:48 PM
To: ASP CDO
Subject: [asp_cdo] CDONTS Can't send messege in my domain
The function I have below sends e-mail to any address I need. The problem
is that when I try an address in our own domain, it does not arrive. It
causes NO error, but the messege gets lost.
function sendMessege()
{
var objSendMail = new ActiveXObject("CDONTS.NewMail");
objSendMail.From="someone@s...";
objSendMail.To= "me@s...";
objSendMail.Subject="Feedback from...";
objSendMail.MailFormat=1;
objSendMail.BodyFormat=1;
objSendMail.Body="This is some messege";
objSendMail.Send();
objSendMail = null;
Response.Write("Messege Sent");
}
any one with this problem before?
thank,
Marco
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
|
|
 |