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
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