Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I EMAIL using ASP?????

Status
Not open for further replies.

JrClown

Technical User
Oct 18, 2000
393
US
Hello all, I realize this may not be an easy task, but I'm willing to learn and I need to learn quick.

Here's what I have:
Input form = ok
script page that inputs in Access = ok
displaying page of what user input = ok
storing input in Acces = ok

Q. How do I get the user input information to be email to a supervisor?
I have no clue how this would be acomplished. Please fellas I need your help. Thank you very very much.








QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 

Thank you very much mrichards. I will keep you posted if it helped. QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 

Well mrichards, I don't want to purchase anything. I want to learn this my self. Thanks for the offer anyway QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 

Thank you for you input br1714\link9. I will look into it. QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 
Hello JR you can use CDO. Ypu just have to make sure that in iis the smtp service is started and you have a dns ip to send the email out. If you do then here is the code:

<%
dim objmail,msg

set objmail = server.createobject(&quot;CDONTS&quot;)

msg = &quot;This is an email Test&quot;

objmail.to = &quot;Someaddress@domain.com&quot;
objmail.from = &quot;Whoever@domain.com&quot;
objmail.body = msg
objmail.send

set objmail = nothing

%>

It is that easy...

Good Luck
Frandazzo
 

Ty Frandazzo, I just downloaded AspEmail and looking into it. I will test your code sample on a different page. Thanks for your input. QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 
Mr Clown

I have nothing to do with jmail I just downloaded it and used it like a lot of others. There are many other apps you can use. I just thought you might try this one thats all.

Mark
 
I apologize mrichards. Is just thought that from your comments &quot;go to and download jamil. It's free and works well plust it will explain how to use it.&quot; and after visiting the site, I thought you were advertising it. Thank you for the input.





QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top