Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Progress Bar in Status bar effect
Message
 
 
À
25/04/2001 17:58:47
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00498920
Message ID:
00499947
Vues:
26
Hi Alexander,

First of all, download it from http://www.nbcsoftware.com/freeware.html , here is the updated version (in UT it's still the old version, Nick, can you update it here, please?).

Ok, this is the simple program, which we use:
*********************************************************************************
*  Description.......: SendMails - automatically sends mails with attachments 
*  Calling Samples...: ?sendmails(,,"Nosonovsky;Lovins;Pasnik;Geiss","Sending Mails from VFP",;
*           "This is a test message... If you receive it, it means, this class actually works.",;
*           "g:\redp\appl\OutputModule\Classes\Fox.reg")
*  Parameter List....: pcUserName, pcPassword, pcRecepients, pcSubject, pcBodyText,;
*                      pcAttachments, plReceipt, plShowClient, plFetch
*  Created by........: Nadya Nosonovsky 07/19/2000 12:31:39 PM 
*  Modified by.......: Susan Burnham 11/27/00 Added check to determine if object exists
**************************************************************************************************************
lparameters pcUserName, pcPassword, pcRecepients, pcSubject, pcBodyText,;
     pcAttachments, plReceipt, plShowClient, plFetch

local  lnReturn

IF TYPE('loMail')#'O'
     loMail=newobject('cusmapi','mapimail.vcx')
ENDIF

lnReturn=loMail.SendMail(pcUserName, pcPassword, pcRecepients, pcSubject, pcBodyText,;
     pcAttachments, plReceipt, plShowClient, plFetch)

loMail.release()
*release loMail
return lnReturn
BTW, I dropped a note to Nigel about this idea, so he'll probably look into it too.

For FTP we use Robert Abram class also from Download section here.

Thanks a lot.

>Nadya,
>
>I just downloaded MapiMail class, but haven't tried it yet. Can you please explain me how do you use it (on the form or some other way), I will let you know how and where you can use my Animation control to play AVI file while sending/receiving mail.
>
>>Hi Alexander,
>>
>>I download your classes (BTW, seems there are huge number of downloads :)) and took a quick look. Looks very nice and handy. I was thinking, can we play .avi sending mails while sending/receiving mails? I use Nigel Coates class MapiMail for it.
>>
>>The similar problem for FTP. Do you have something which could be used?
>>
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform