Re: how to send email to extranet
- From: "Pegasus \(MVP\)" <I.can@xxxxxxxxxx>
- Date: Wed, 26 Mar 2008 11:01:46 +0100
The script behaves like any other EMail client. See if you can
send mail from Outlook Express (for example) to your Yahoo
mail box via your intranet server, then use the same mail settings
for your script.
"£¤£¤£¤" <eagle@xxxxxxxxxxx> wrote in message
news:%23o4wOCujIHA.5080@xxxxxxxxxxxxxxxxxxxxxxx
Ok,I will try to state my question in detail.
I have a domino server in intranet. Its IP is 192.168.0.1
The email client application, notes, can send email to yahoo
email-box,while the following script cannot. Why?
Does the smtpserver appointed in the script mean the destination mail
server?
If it is true,then what is the source mail server? I mean that notes
client sends mail through domino server,which mail server or service does
the script send mail through?
####################VBS code#############
Set objEmail = CreateObject("CDO.Message")
objEmail.From = "name@xxxxxxxxxx"
objEmail.To = "extranet@xxxxxxxxxxxx"
objEmail.Subject = "Server down"
objEmail.Textbody = "No longer accessible over the network."
objEmail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objEmail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = _
"192.168.0.1" 'this is mail server IP.
objEmail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
objEmail.Configuration.Fields.Update
objEmail.Send
.
- References:
- how to send email to extranet
- From: £¤£¤£¤
- Re: how to send email to extranet
- From: Pegasus \(MVP\)
- Re: how to send email to extranet
- From: £¤£¤£¤
- Re: how to send email to extranet
- From: Pegasus \(MVP\)
- Re: how to send email to extranet
- From: £¤£¤£¤
- Re: how to send email to extranet
- From: Pegasus \(MVP\)
- Re: how to send email to extranet
- From: £¤£¤£¤
- how to send email to extranet
- Prev by Date: Re: do and exiting issue
- Next by Date: Re: ftp corrupting my zip file
- Previous by thread: Re: how to send email to extranet
- Next by thread: Re: how to send email to extranet
- Index(es):
Relevant Pages
|