Ücretli Brinkster Hostuma Web Wiz Forums version 7.9'u kurdum. Tek sıkıntım üyelere hem kayıt sırasında hem de üye olduktan sonra mail göndermemesi. Üyeyi database'e kaydediyor. Ancak onay maili göndermiyor. Forum adresim:
http://www.merakmerkezi.net/forum1/default.asp
Brinkster'de ASP EMail'i destekliyor. CDONTS'u desteklemiyor. ASP Email ile ilgili olarak brinkster aşağıdaki formatı veriyor.
<%
Dim MyMail
Set MyMail = Server.CreateObject("Persits.MailSender" )
MyMail.Host = "mail.YourDomain.com"
MyMail.body = "test"
MyMail.IsHTML = True
MyMail.From = "[email protected]"
MyMail.Username = "[email protected]"
MyMail.Password = "Your Email Password"
MyMail.AddAddress "[email protected]"
MyMail.Subject = "test"
'MyMail.AddCC "[email protected]"
If MyMail.Send Then
Response.Write("Message Sent." )
Else
Response.Write("Message Not Sent." )
End If
Set MyMail = Nothing
%>
Web Wiz Forum ise aşağıdaki standartta email bilgisi istiyor.
'******************************************
'*** Persits AspEmail mail component ****
'******************************************
'AspEmail component
Case "AspEmail"
'Create the e-mail server object
Set objAspEmail = Server.CreateObject("Persits.MailSender")
With objAspEmail
'Out going SMTP mail server address
.Host = strOutgoingMailServer
'Who the e-mail is from
.From = strFromEmailAddress
.FromName = strFromEmailName
'Who the e-mail is sent to
.AddAddress strRecipientEmailAddress
'The subject of the e-mail
.Subject = strSubject
'Set the e-mail body format (BodyHTML=HTML Body=Text)
If blnHTML = True Then
.IsHTML = True
End If
'The main body of the e-mail
.Body = strEmailBodyMessage & strEmailBodyAppendMessage
'Send the e-mail
If NOT strOutgoingMailServer = "" Then .Send
End With
'Close the server mail object
Set objAspEmail = Nothing
Brinkster’in bilgilerini, Web Wiz Forum’un Yönetici Panelini kullanarak Forum E-Mail Ayarları kısmına girdim ancak mail göndermedi. Forumun EMail Ayarlarında kullanıcı adı ve şifreyi girebileceğim bir bölümü yoktu. Onu da web wiz forumun ilgili asp sayfasına belirtilen formatta
ekledim yine olmadı. Acaba brinkster’in SMTP server’ı şifrelimi ya da başka bir hata mı yapıyorum.
Bilen bir arkadaş bana yardımcı olabilirse sevinirim.
mail adresim: [email protected]
http://www.merakmerkezi.net/forum1/default.asp
Brinkster'de ASP EMail'i destekliyor. CDONTS'u desteklemiyor. ASP Email ile ilgili olarak brinkster aşağıdaki formatı veriyor.
<%
Dim MyMail
Set MyMail = Server.CreateObject("Persits.MailSender" )
MyMail.Host = "mail.YourDomain.com"
MyMail.body = "test"
MyMail.IsHTML = True
MyMail.From = "[email protected]"
MyMail.Username = "[email protected]"
MyMail.Password = "Your Email Password"
MyMail.AddAddress "[email protected]"
MyMail.Subject = "test"
'MyMail.AddCC "[email protected]"
If MyMail.Send Then
Response.Write("Message Sent." )
Else
Response.Write("Message Not Sent." )
End If
Set MyMail = Nothing
%>
Web Wiz Forum ise aşağıdaki standartta email bilgisi istiyor.
'******************************************
'*** Persits AspEmail mail component ****
'******************************************
'AspEmail component
Case "AspEmail"
'Create the e-mail server object
Set objAspEmail = Server.CreateObject("Persits.MailSender")
With objAspEmail
'Out going SMTP mail server address
.Host = strOutgoingMailServer
'Who the e-mail is from
.From = strFromEmailAddress
.FromName = strFromEmailName
'Who the e-mail is sent to
.AddAddress strRecipientEmailAddress
'The subject of the e-mail
.Subject = strSubject
'Set the e-mail body format (BodyHTML=HTML Body=Text)
If blnHTML = True Then
.IsHTML = True
End If
'The main body of the e-mail
.Body = strEmailBodyMessage & strEmailBodyAppendMessage
'Send the e-mail
If NOT strOutgoingMailServer = "" Then .Send
End With
'Close the server mail object
Set objAspEmail = Nothing
Brinkster’in bilgilerini, Web Wiz Forum’un Yönetici Panelini kullanarak Forum E-Mail Ayarları kısmına girdim ancak mail göndermedi. Forumun EMail Ayarlarında kullanıcı adı ve şifreyi girebileceğim bir bölümü yoktu. Onu da web wiz forumun ilgili asp sayfasına belirtilen formatta
ekledim yine olmadı. Acaba brinkster’in SMTP server’ı şifrelimi ya da başka bir hata mı yapıyorum.
Bilen bir arkadaş bana yardımcı olabilirse sevinirim.
mail adresim: [email protected]