Subject |
Re: Sending Email |
From |
Jan Hoelterling <jan@hoelterling.com> |
Date |
Mon, 6 Oct 2025 08:52:37 -0600 |
Newsgroups |
dbase.getting-started |
Hi Carlos,
some of these components need to be unlocked with your personal key. To
make this easier, I have created CK.CC which wraps all of the Chilkat
classes.
Example:
#Define OA_MailMan2 "Chilkat_9_5_0.MailMan"
*
-----------------------------------------------------------------------------
* MailMan
*
-----------------------------------------------------------------------------
/* The Chilkat MailMan class is reponsible for sending email though SMTP
and
receiving/managing email on POP3 servers.
Help at...: http://www.chilkatsoft.com/refdoc/xChilkatMailMan2Ref.html
Properties: see OLH - too many
Methods...: see OLH - too many
Events....: --- */
Class CK_MailMan of OLEAUTOCLIENT(OA_MailMan2)
this.active = true
if this.UnlockComponent(ChilkatLic)<>1
msgbox("Could not unlock MAILMAN component:"+chr(13)+;
this.LastErrorText,"CK "+this.version,16)
this.active = false
return
endif
endclass
Hope this helps,
Jan
|
|