Click to See Complete Forum and Search --> : Isn't Crazy?


eleniv
November 13th, 2001, 09:40 AM
When I do this (in an ASP Page):
<% set mail = server.createobject("CDONTS.NewMail")
STR= "DSGFFG:DSGFSG"
mail.send STR,"eleniv@nextday.gr","gfhgfh","gfhgh"
set mail = nothing%>
it works fine!
but with the below way doesn't work!!!!

<% set mail = server.createobject("CDONTS.NewMail")
mail.send "DSGFFG:DSGFSG","eleniv@nextday.gr","gfhgfh","gfhgh"
set mail = nothing%>