CODE
<%
Dim obCDO
Set obCDO = Server.CreateObject("CDO.message")
with obCDO
.From = "test@test.net"
.To = "support@test.net"
.Subject = "Test"
.TextBody = "testing"
.Send()
end with
%>
Dim obCDO
Set obCDO = Server.CreateObject("CDO.message")
with obCDO
.From = "test@test.net"
.To = "support@test.net"
.Subject = "Test"
.TextBody = "testing"
.Send()
end with
%>
Basically, I need to the "To", "Subject", and "TextBody" fields use data posted from a form. How can I go about that?
