Have a look here for Redemption
http://www.dimastr.com/redemption/
code somthing like;;;
<pre><FONT COLOR="#00007F">Option</FONT> <FONT COLOR="#00007F">Explicit</FONT>
<FONT COLOR="#00007F">Private</FONT> <FONT COLOR="#00007F">Sub</FONT> EMailViaRedemption(strRecipAddr <FONT COLOR="#00007F">As</FONT> <FONT COLOR="#00007F">String</FONT>, strFileFullPathName <FONT COLOR="#00007F">As</FONT> <FONT COLOR="#00007F">String</FONT>)
<FONT COLOR="#00007F">Dim</FONT> SafeItem <FONT COLOR="#00007F">As</FONT> <FONT COLOR="#00007F">Object</FONT>
<FONT COLOR="#00007F">Dim</FONT> oItem <FONT COLOR="#00007F">As</FONT> <FONT COLOR="#00007F">Object</FONT>
<FONT COLOR="#00007F">Dim</FONT> App <FONT COLOR="#00007F">As</FONT> <FONT COLOR="#00007F">Object</FONT>
<FONT COLOR="#00007F">Dim</FONT> MyAttachments <FONT COLOR="#00007F">As</FONT> <FONT COLOR="#00007F">Object</FONT>
<FONT COLOR="#00007F">On</FONT> <FONT COLOR="#00007F">Error</FONT> <FONT COLOR="#00007F">GoTo</FONT> EndProperly
<FONT COLOR="#00007F">Set</FONT> App = CreateObject("Outlook.Application")
<FONT COLOR="#007F00">'// Create an instance of Redemption.SafeMailItem</FONT>
<FONT COLOR="#00007F">Set</FONT> SafeItem = CreateObject("Redemption.SafeMailItem")
<FONT COLOR="#007F00">'// Create a new message</FONT>
<FONT COLOR="#00007F">Set</FONT> oItem = App.CreateItem(0)
<FONT COLOR="#007F00">'// Now create the SafeItems</FONT>
<FONT COLOR="#00007F">With</FONT> SafeItem
.Item = oItem
.Recipients.Add strRecipAddr
.Recipients.ResolveAll
<FONT COLOR="#00007F">Set</FONT> MyAttachments = .Attachments
MyAttachments.Add strFileFullPathName
.Subject = "Redemption: " & Format(Date, "mmmm,dd")
.Send
<FONT COLOR="#00007F">End</FONT> <FONT COLOR="#00007F">With</FONT>
EndProperly:
<FONT COLOR="#00007F">Set</FONT> SafeItem = <FONT COLOR="#00007F">Nothing</FONT>
<FONT COLOR="#00007F">Set</FONT> oItem = <FONT COLOR="#00007F">Nothing</FONT>
<FONT COLOR="#00007F">Set</FONT> App = <FONT COLOR="#00007F">Nothing</FONT>
<FONT COLOR="#00007F">Set</FONT> MyAttachments = <FONT COLOR="#00007F">Nothing</FONT>
<FONT COLOR="#00007F">End</FONT> <FONT COLOR="#00007F">Sub</FONT>
</pre>