Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Winsock: sending email messages (SMTP, port 25)
Custom GDI+ class
Using EnumPrinters function to enumerate locally installed printers
Semi-transparent Form
Custom HttpRequest class (WinHTTP)
Custom HttpRequest class (WinINet)
Using Video Capture: displaying on FoxPro form frames and previewing video obtained from a digital camera
How to convert a bitmap file to monochrome format (1 bpp)
Compressing and decompressing files with Windows API Runtime Library routines
Printing Image File, programmatically set print page orientation to landscape
Custom FTP Class for Visual FoxPro application
How to create MD-5 and SHA-1 hash values from a string
Using FoxTray ActiveX control: System Tray Icon and menu attached to VFP form
Extended MessageBox Class
Transparent Menu Class (requires VFP9)
Creating irregularly shaped FoxPro form using transparency color key
Adding icon to the systray (requires VFP9)
How to ping a remote site using ICMP API calls
How to create non-blocking Winsock server
Using Month Calendar Control (VFP9, Comctl32.dll)
How to print FoxPro form
How to detect if additional monitor is connected and active
GDI+: saving image of FoxPro form to graphics file (BMP, GIF, JPG, PNG, TIF)
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: 48  
    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-2010 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.0.85), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
    Last Topics Visited (38.107.191.107)
    5.1 min.
    7.38 min.Example: 'Enumerating Processes -- WinNT'
    39.57 min.Function: 'IsValidURL'
    Function group: 'URL Monikers'
    44.57 min.Function: 'GetMappedFileName'
    46.5 min.Function: 'waveOutGetNumDevs'
    Function group: 'Windows Multimedia'
    51.87 min.Function: 'SetBkColor'
    Function group: 'Painting and Drawing'
    5 day(s)Login
    Google
    Advertise here!