Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Vbscript for SSL email?

Status
Not open for further replies.

villan

Programmer
Jul 5, 2001
6
GB
I would like to set up a secure e-mail page on a client site, currently the pages are SSL protected but the e-mail sent from within the site is not.

The e-mail contains sensitive data & is currently sent using the usual VBScript of:

Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.FromName = "john smith"
Mailer.FromAddress= "me@work.com"
Mailer.RemoteHost = "mail.xxx.com"
Mailer.AddRecipient "Client","mrsx@heraddress.com"
Mailer.Subject = "Confidential data"
BT = "Hello"
mailer.bodytext=BT
mailer.sendmail
set objConn=nothing
set mailer=nothing

Is their a way to set up a secure connection (i.e using PGP) & use VBScript to send it?

T.I.A

- Villan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top