29th
NOV

Why can’t I send an email using basic VBscript in an.asp page?

Posted by admin under Programming Design

Erik B asked:


here is the relevent portion of my code:

Dim objMail
Set objMail = CreateObject(CDONTS.NewMail)
ObjMail.Send erikbays@yahoo.com, marketing@republiccapitalgroup.com, Subject, This is the body.
Set objMail = Nothing

it is very basic; straight off of the Microsoft web site in fact. Executing this script does not give me an error. The resulting page displays normally. I just don’t ever get an email. I have checked my bulk bin. My server is running VBScript version 5. Without an error message I can’t figure out what the problem is.

21st
NOV

What is the best way to send bulk email newsletters directly to the users inbox?

Posted by admin under Programming Design

ibrainspk asked:


What is the best way to send bulk email newsletters directly to the users inbox? I Mean which way is the best which is not blocked by ISPs.

30th
OCT

PHP HTML Scripting Help?

Posted by admin under Programming Design

Ed J asked:


Hi,

Here is my PHP Script

code
?php
$mailto = test@test.com;
$subject = Bomber;
$headers = From: yourorsecret@hotmail.com;
$toplam=10;
for ($t=1;$t$toplam;$t++){
if (mail($mailto,$subject,Your mesagge: $toplam / $t Mail.,$headers))
echo bombed;
else
echo bombed;
}
?
/code

I just need the HTML for it now – please help me!