Mail empfang über asp problem - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega International Area (/forum-22.html) +--- Forum: German Corner (/forum-26.html) +--- Thread: Mail empfang über asp problem (/thread-4210.html) |
Mail empfang über asp problem - jasin777 - 09-08-2008 10:48 AM 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 %> RE: Mail empfang über asp problem - Zothos - 09-08-2008 06:36 PM Ich vermute weil du dich nicht gegen den smtp Server authentifizierst. Aber definitiv kein ispCP Problem Also CloseD! |