Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Switching between keyboard layouts
System and Local Time values
Validating URLs using moniker functions
Winsock: initializing the service in the VFP application
GDI+: cropping images
Reading data from INI files
Retrieving the name of the default printer for the current user on the local computer (Win NT/XP)
Using named pipes for interprocess communication
Using the CreateFile
Converting twips to pixels and vice versa
How to display the port-configuration dialog box for a port on the specified server
Locking mouse and keyboard input for the VFP application
Testing if a connection to an Url can be established
Using the DeleteFile
Converting a hexadecimal string to an integer
Enumerating servers of the specified type (e.g. SQL Server) in the primary domain
How to display advanced Task Dialog (Vista)
How to enumerate, add and delete shares on the local computer (WinNT/XP)
Monitoring changes occurring within a directory
Placing an arbitrary rectangular area of main VFP window on the Clipboard
Pocket PC: custom RAPI class for operating with the Object Store Databases
Saving HKEY_LOCAL_MACHINE\\Software\\ODBC Registry Entries to an XML file
Using the GradientFill function
Pocket PC: custom RAPI class for operating with the System Registry
Using custom Simple MapiSendMail class

User rating: 6/10 (1 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Versions:
click to open
Before you begin:
Get implementation code for the MapiSendMail class here.

Based on Simple MAPI functions this Custom class allows sending email messages from your default email client to multiple recipients with file attachments.

Related examples:
  • MAPI: sending email messages
  • MAPI: reading email messages
  • Winsock: sending email messages (SMTP, port 25)
  • Winsock: reading email messages (POP3, port 110)
  • Function MAPISendDocuments
  •  
    #DEFINE cret Chr(13)+Chr(10)
    #DEFINE dret cret+cret
     
    PRIVATE obj
    obj = CreateObject("MapiSendMail")
     
    WITH obj
     
        * though the Sender object is implemented I never managed to make it
        * something else but the default address for the local email client
     
        .AddSender("A.A.", "someone@somwhere.mail")
     
        * add one or more recipients 
        * note that the following ones will not work, just an example
     
        .AddRecipient("Chivas Regal", "info@chivasregal.mail")
        .AddRecipient("Jim Beam", "info@.jimbeam.mail")
        .AddRecipient("John Walker", "info@.johnwalkermail")
        .AddRecipient("Canadian Club", "info@.canclubmail")
     
        .MsgSubject = "Test Message"
     
        .MsgBody ="This text will be put into body of your message." + dret +;
            "You can also use table fields and Text and Edit Boxes." + dret +;
            "Source:" + cret +;
            "http://www.news2news.com/vfp"
     
        * adding file attachments
        * make sure that all files are available
     
        .AddAttachment("C:\myfiles\Resume\cover.txt")
        .AddAttachment("C:\myfiles\Resume\cv.doc")
        .AddAttachment("C:\myprogs\sample.PRG")
     
        .SndMessage
    ENDWITH
     
     
     

    User rating: 6/10 (1 votes)
    Rate this code sample:
    • ~
    1097 bytes  
    Created: 2002-11-18 13:11:21  
    Modified: 2010-07-08 11:50:50  
    Visits in 7 days: 111  
    Listed functions:
    Printer friendly API declarations
    My comment:
    Although the Sender object is presented, it may not be properly recognized by the MAPI. In my tests, the Sender was always the default address of the local email client regardless of a value assigned.

    Prior to invoking MAPISendMail, ensure accessibility of all files to be attached.

    This class does not use MAPILogon and MAPILogoff functions (hSession=0). In this case -- it is called an implicit logon -- the MAPI session is of temporary type. An implicit session gets closed by the time the call returns.

    Tested on Windows XP Home Edition, Outlook Express 6.
    Word Index links for this example:
    Translate this page:
      Spanish    Portuguese    German    French    Italian  
    FreeTranslation.com offers instant, free translations of text or web pages.
    User Contributed Notes:
    There are no notes on this subject.


    Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

    Privacy policy
    Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
    Last Topics Visited (54.242.233.11)
    3 sec.Function: 'FindCloseChangeNotification'
    28.65 min.Example: 'GDI+: sending image of FoxPro form to printer'
    28.7 min.Function: 'mmioOpen'
    Function group: 'Windows Multimedia'
    28.75 min.
    55.63 min.Example: 'How to print FoxPro form'
    55.7 min.Example: 'Encapsulating access to the Windows Services in a class'
    Google
    Advertise here!