|
Kathy,
That would depend on what method you are using on your
website to actually send the email.
On Win2K and newer you can use CDOSYS
Here is some ASP code
you can use as an example
<%
Dim ObjSendMail Set ObjSendMail = CreateObject("CDO.Message") 'This section provides the configuration information for the remote SMTP server. ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'Send the message using the network (SMTP over the network). ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") ="mail.yoursite.com" ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False 'Use SSL for the connection (True or False) ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 ' If your server requires outgoing authentication uncomment the lines bleow and use a valid email address and password. 'ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic (clear-text) authentication 'ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") ="[EMAIL PROTECTED]" 'ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") ="yourpassword" ObjSendMail.Configuration.Fields.Update 'End remote SMTP server configuration section== ObjSendMail.To = "[EMAIL PROTECTED]" ObjSendMail.Subject = "this is the subject" ObjSendMail.From = "[EMAIL PROTECTED]" ' we are sending a text email.. simply switch the comments around to send an html email instead 'ObjSendMail.HTMLBody = "this is the body" ObjSendMail.TextBody = "this is the body" ObjSendMail.Send Set ObjSendMail = Nothing %> -Jerry
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kathy Lees Sent: Friday, January 27, 2006 9:36 AM To: [email protected] Subject: RE: [IMail Forum] Imail wont send message to anyone not listed in IMAIL How do I get the form
to authenticate to IMAIL? From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of John T
(Lists) Why yes. Naturally,
since you have relay set to No Relay, unless your form is authenticating to
Imail, it will not relay for it. You will need to
change your relay settings to relay for IP addresses, and then add the IP of the
server that the forms are coming from. John
T eServices For
You -----Original
Message----- We have IMAIL version 8.15 on our
system and have it set to No Mail Relay The problem is
this: On any form we have on our websites,
the form will not send to anyone not listed in IMAIL. This is causing a major
problem if we have a page where someone can refer a friend by filling out a form
on our website. Does anyone have any
suggestions? Kathy
Lees Technical
Director Phone: 719-522-0595
x202 Fax:
719-522-0596 Website: www.ltcconnection.com Get your free subscription to the
new LTCi-Digest and get late
breaking LTCi news delivered direct to your
desktop! Subscribe at www.ltcidigest.com |
- RE: [IMail Forum] Imail wont send message to anyon... Jerod M. Bennett
- RE: [IMail Forum] Imail wont send message to ... Kathy Lees
- Re: [IMail Forum] Imail wont send message... Dave Doherty
- RE: [IMail Forum] Imail wont send mes... Kathy Lees
- Re: [IMail Forum] Imail wont send... Dave Doherty
- RE: [IMail Forum] Imail wont send mes... Kathy Lees
- RE: [IMail Forum] Imail wont send message to ... Dan Horne
- RE: [IMail Forum] Imail wont send message to ... Dan Horne
- Re: [IMail Forum] Imail wont send message... Dave Doherty
- RE: [IMail Forum] Imail wont send message... GlobalWeb.net Webmaster
- RE: [IMail Forum] Imail wont send message to ... Dan Horne
