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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redemption problem error 429

Status
Not open for further replies.

Schaap

Technical User
Jul 6, 2004
54
0
0
NL
I read all the threads, but still it's not clear for me !

I'll send an email from my db-form. That works !!!

In other threads I read that to get around the security problem it's possible to use the outlook redemption.

Used code:

Titeltxt = "New "
Bodytxt = "User: " & username & "
Set APP = CreateObject("Outlook.Application")
Set ITM = APP.CreateItem(olMailItem)

Set ITM = GetObject(, "Redemption.SafeMailItem")
If ITM Is Nothing Then
Set ITM = CreateObject("Redemption.SafeMailItem")
End If

strRecipName = "name@piet.nl"
With ITM
.To = strRecipName
.Subject = Titeltxt
.Body = Bodytxt
.Send
End With

I get the following error: Runtime error 429: ActiveX
component can't create object.
Error appears at line: Set ITM = GetObject(,"Redemption.SafeMailItem").

I need some help (solution/explanation)!
 
Problem solved with Mapilab free redemption stuff

thx 4 all the clues
 
Hi Schaap

Would you mind posting the link to where you found the Mapilab free redemption stuff? I'm running into the same problem here...

Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top