VB 2005 Email Programming

  • Thread starter Thread starter Sharrukin Amiri
  • Start date Start date
I wouldn't do it for a PIN number for a credit card for example--

but if you're emailing passwords for an online forum? I don't think
that it's the end of the world.

I agree there ;-)
 
Sharrukin said:
Can anyone give me a head start on programming outlook to send and recieve
mail via VB 2005. I want to automatically send a unique pin number
to a customer who's credit card was approved. I am new to VB2005. This
would be my first VB2005 app. I have using VB6 for over 15 years.


--

Warm Regards,

Sharrukin

Since your information in email is sensitive, so I think you may need
the SSL and S/MIME.

I used this email component ( http://www.emailarchitect.net/easendmail/
) in our company for confidential email, there are several samples for
vb.net after
you installed it on machine.

SSL connection:

SSL connection encrypts data between the SMTP component and SMTP server
to protects user, password and email content in TCP/IP level.

Please refer to:

http://www.emailarchitect.net/easendmail/sdk/default.asp?ct=object_ssl

S/MIME: digital signed and encrypted email

Digital signature prevents email content is faked or changed in
transport level. Encrypting email protects email content from exposure
to inappropriate recipients. Both digital signature and email
encrypting depend on digital certificate.

Please refer to:

http://www.emailarchitect.net/easendmail/sdk/default.asp?ct=object_smime
 
Back
Top