View Single Post
Old 12-02-2005, 03:43 PM   #2 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,415

office politics will become famous soon enough

Default

ive sent emails using classic ASP. You could sub in the textbox values from a post action.

here's the email asp script that i wrote

Code:
<% Option Explicit %>

<% Dim MyEmail

       Set MyEmail = Server.CreateObject("CDONTS.NewMail")

       MyEmail.From = "tsimpkins@whooha.com"

       MyEmail.To = ""

       MyEmail.Subject = "Update WF Database"

       MyEmail.Body = "Tara has requested for you to update the WF Database."

       MyEmail.Send

       Set MyEmail = Nothing 
       
       response.write "email sent"
       
%>
<input type="button" onclick="window.back()">

office politics is offline