Hi everybody
In my veterinary clinic, i use a local lan with 5 PC's for the gestion of my clinic (patients, comptability etc etc....) wich is not connected to Internet for security reason. On it my Fivewin-Harbour prog. is running.
I have an other PC for all my Internet business. (Firefox and Thunderbird)
Question too hard for me:
I need to export a list of email adresses from my Harbour prog on an USB key and use it on the other PC to send mailing (with Thunderbird or Harbour?)
I know naturally how to export my email adresses on a file on an USB key, but i don't have any idea to use it on Internet for sending my mails.
Do i import it on Thunderbird (and how?) or would it be better to developp an prog with Fivewin- Harbour (I see a Fivewin Tmail class) on the second Pc for this use?
Sorry my english isn't very good and i hope you will understand my question
Thanks everybody for your help
SENDING MAILS
- James Bott
- Posts: 4840
- Joined: Fri Nov 18, 2005 4:52 pm
- Location: San Diego, California, USA
- Contact:
Re: SENDING MAILS
Patili,
Thunderbird is not MAPI compliant so you cannot use FW's TMail class. You will need to send the mails directly to your SMTP server and you will need a copy of the TSMTP class for this. FW does have a copy of this class, but there are been a number of third-party improvements. Send me an email and I will send you a copy of the improved class.
Regards,
James
Thunderbird is not MAPI compliant so you cannot use FW's TMail class. You will need to send the mails directly to your SMTP server and you will need a copy of the TSMTP class for this. FW does have a copy of this class, but there are been a number of third-party improvements. Send me an email and I will send you a copy of the improved class.
Regards,
James
- Antonio Linares
- Site Admin
- Posts: 42404
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 12 times
- Been thanked: 48 times
- Contact:
Re: SENDING MAILS
James,
> there are been a number of third-party improvements.
Would you mind to post here the entire Class source code with all the changes ?
many thanks
> there are been a number of third-party improvements.
Would you mind to post here the entire Class source code with all the changes ?
many thanks
Re: SENDING MAILS
Antonio Linares wrote:James,
> there are been a number of third-party improvements.
Would you mind to post here the entire Class source code with all the changes ?
many thanks
Dear Mr.James,
I am also interested in the modified version of this class.
Regards
Anser
Re: SENDING MAILS
James,
yes, it is. I use it myself.
Regards,
Davide
James Bott wrote:Thunderbird is not MAPI compliant so you cannot use FW's TMail class.
yes, it is. I use it myself.
Regards,
Davide
Re: SENDING MAILS
patili wrote:Hi Davide, can you explain me how i can use it
Thanks
I use it with the standard FWH TMail class:
Code: Select all | Expand
oMailItem:=tMail():New( cSubject,cBody,,,,, .f., lShow,,aTo,aFiles)
ACTIVATE MAIL oMailItem
If (oMailItem:nRetCode > 1) // 1 = Cancelled by the user
MsgAlert( "MAPI E-Mail error "+ltrim(str(oMailItem:nRetCode)) )
Endif
Regards,
Davide