> while not adoRS.EOF%>
> <%
> vemail=Response.Write(adoRS("Email"))
> Response.Write(vemail)

Don't know if it will fix your problem but you don't
need the above. Or you can change it to 
vemail = adoRs("Email")

> 
> Set myMail=CreateObject("CDO.Message")
> myMail.Subject="Newsletter"
> myMail.From="[EMAIL PROTECTED]"

If you set vemail above you can do the below. 

> myMail.To=vemail

If you do not set vemail at the beginning of the loop
you can use

myMail.to = adoRS("Email")

> myMail.HTMLBody="This is a dummy newsletter"
> myMail.Send
> 
> if not adoRS.EOF then
> adoRS.MoveNext
> end if
> WEND %>
> 
> 
> 
> 
> 
> Regards
> 
> Dilip
> 
> 
> __________________________________________________
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam
> protection around 
> http://mail.yahoo.com 
> 


 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to