sending signed messages with code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some code in an Access db to send an email with an attachment.

I would like to send this email and attachment using s/mime to insure that
the message received was the one sent, verify the sender, provide
notification of receippt etc.

How is this done programatically? I have't been able to find any discussion
on this.

Thanks
 
There is no such native method in Access.

What about trying to find an SMTP component that you can use from VBA,
that will handle s/mime? (SMTP being the protocol that is used for
sending emails from a client program)

Try the following google web & groups search:

smtp component s/mime vb OR vba

HTH,
TC
 
I'm finding that out. I've come across a method that you use the command bar
codes of Outlook.

I'll do a search on components to add, but, this will be an application that
difrent varsion of Office will be using so I am concerned about installation
issues. My program uses other Office components. Is there any Office
component that will work for this?

Thanks
 
Say you get an SMTP component that you can use from VBA, and will
handle s/mime. That component would be independent of Outlook, and
Office. So it would be irrelevant which versions of Outlook and Office,
if any, they had.

Conversely, if you code a solution that uses Outlook, or Office, then,
you are presumeably dependent on what versions of Outlook and Office
they have.

HTH,
TC [MVP Access]
 
Back
Top