Version: 0.6.0
email.h
1 // Name: email.h
3 // Purpose: wxEmail: portable email client class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2001-08-21
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
11 #pragma once
12 
13 #include "wxgis/net/net.h"
14 #include "wxgis/net/message.h"
15 
16 #include "wxgisdefs.h"
17 
18 #ifdef wxGIS_USE_EMAIL
19 
27 class WXDLLIMPEXP_GIS_NET wxEmail
28 {
29 public:
30  wxEmail(void);
31 
32  // Send a message.
33  // Specify profile, or leave it to wxWidgets to find the current user name
34  static bool Send(const wxMailMessage& message);
35 
36 };
37 
38 #endif //wxGIS_USE_EMAIL
39