Current time: 06-16-2024, 09:09 AM Hello There, Guest! (LoginRegister)


Thread Closed 
Mail empfang über asp problem
Author Message
jasin777 Offline
Junior Member
*

Posts: 13
Joined: Jul 2008
Reputation: 0
Post: #1
Mail empfang über asp problem
hi leute

habe eine mail script über contact.asp erstellt, bekomme aber keine emails wenn jemand versucht über meine hp zu schreiben.
alles andere funktioniert.. Outlook-webmail nur da nicht. könnte es eventuel am smtpPort liegen?

<%
for i=1 to 7
message=Request("message")
next
message=message + Request("message")
smtpServer = "smtp.meinedomain.de"
smtpPort = 25


name = Request("Your_Name:")
Set myMail = CreateObject("CDO.Message")
myMail.Subject = "from " & name
myMail.From = Request("Your_Email:")
myMail.To = Request("recipient")
myMail.HTMLBody = "<html><head><title>Contact letter</title></head><body><br>" & message & "</body></html>"
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtpServer
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = smtpPort
myMail.Configuration.Fields.Update
myMail.Send

%>
09-08-2008 10:48 AM
Find all posts by this user
Zothos Offline
Release Manager
*****
Dev Team

Posts: 1,262
Joined: Feb 2007
Reputation: 10
Post: #2
RE: Mail empfang über asp problem
Ich vermute weil du dich nicht gegen den smtp Server authentifizierst. Aber definitiv kein ispCP Problem Tongue Also CloseD!
09-08-2008 06:36 PM
Find all posts by this user
Thread Closed 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)