can someone tell me if it is possible to incorporate e-mailadresses in xbase++ fields and to use them to send emails from.
can someone tell me if it is possible to incorporate e-mailadresses in xbase++ fields and to use them to send emails from.
Yes. Search the forum for email, smtp, and mapi for more information.
Regards,
James
Hi all
I use
http://www.afterlogic.com/products/email-components
since 3 Years
One Dll fast and small
Tx
Hi,
That looks very interesting.
Can you provide us an example of how you handle the integration ?
Thanks a lot in advance.
Regards,
Michel D.
Genk (Belgium)
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773
OIMAP := TOLEAUTO():NEW( "MAILBEE.IMAP4" )
OIMAP:LICENSEKEY := CMB_MAILKEY
OIMAP:SERVERNAME := CSERVER
OIMAP:USERNAME := CACCOUNT
OIMAP:PASSWORD := CPASSWORD
OSMTP:ENABLELOGGING = .T.
OIMAP:ENABLELOGGING := .t.
OIMAP:CONNECT( CSERVER )
OIMAP:SELECTMAILBOX( cFolder )
envelopes := OIMAP:RetrieveEnvelopesEx( 1, OIMAP:MessageCount, .F., .T., .f. )
EvelopesArr := OIMAP:RETRIEVEENVELOPES( 1, 25000, .T. )
OIMAP:DISCONNECT()