Radore Destek Platformu

Jmail bileşeni ile e-posta gönderimi nasıl yapabilirim?

Aşağıdaki form e-posta örneğini kendi alan adı bilgileriniz ile düzenleyip kullanabilirsiniz.

<%
On Error Resume Next
Set smtp = Server.CreateObject(“JMail.Message”)
smtp.ContentType = “text/html”
smtp.Charset = “ISO-8859-9″
smtp.AddRecipient alici@domain.com
smtp.from = radore@radore.com
smtp.fromname = “Kimden
smtp.MailServerUserName = gonderen@domain.com
smtp.MailServerPassWord = “Sifre
smtp.Subject = “E-posta Konu”smtp.body = msg
smtp.Send(“192.168.95.8:587″)
if err then
Response.Write err.Description & ”Eposta gönderilemedi.”
else
Response.Write(“Mesajınız iletilmiştir.”)
end if
set smtp = Nothing

%>

Bu içerik faydalı mıydı?