Code: Send Emails using ASP #Classic ASP

<%
	dim email
	email = Request.Form("email") 'if you are collecting user emails from a form - POST method
	'send email 
	Dim myObject
	Set myObject = Server.CreateObject("CDO.Message")

	'set the To and From 
	myObject.To = "webmaster@justetc.net"
	myObject.From = "webmaster@justetc.net"
	myObject.Bcc = "sayed@justetc.net"
	
        myObject.Subject = "Email Sending Code"
	myObject.TextBody = "The person with the email address " & email & " submitted the form"
	myObject.Send()

	'Set objects to "nothing" to free up the
	'the computer memory 
	Set myObject = nothing
%>

From: http://sitestree.com/?p=3714
Categories:Classic ASP
Tags:
Post Data:2016-07-16 14:52:59

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada