Hi, There is a another way is use the JavaScript to send it. The Javascript has features to send email using EmaiTo option as like below, function sendMail() {
var link = "mailto:me@example.com"
+ "?cc=myCCaddress@example.com"
+ "&subject=" + escape("This is my subject")
+ "&body=" + escape(document.getElementById('myText').value)
;
window.location.href = link;
}
But still not secured and not used SMTP to send email . |