17e79bc7c9
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.2 patch 1092 git-svn-id: svn://10.65.10.50/trunk@16293 c028cbd2-c16b-5b4b-a496-9718f37d4682
41 lines
929 B
C++
Executable File
41 lines
929 B
C++
Executable File
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: email.h
|
|
// Purpose: wxEmail: portable email client class
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 2001-08-21
|
|
// RCS-ID: $Id: email.h,v 1.2 2008-03-11 15:43:15 alex Exp $
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_EMAIL_H_
|
|
#define _WX_EMAIL_H_
|
|
|
|
#include "msg.h"
|
|
|
|
/*
|
|
* wxEmail
|
|
* Miscellaneous email functions
|
|
*/
|
|
|
|
class wxEmail
|
|
{
|
|
public:
|
|
//// Ctor/dtor
|
|
wxEmail() {};
|
|
|
|
//// Operations
|
|
|
|
// Send a message.
|
|
// Specify profile, or leave it to wxWidgets to find the current user name
|
|
static bool Send(wxMailMessage& message, const wxString& profileName = wxEmptyString,
|
|
const wxString& sendMail = wxT("/usr/sbin/sendmail -t"));
|
|
|
|
protected:
|
|
};
|
|
|
|
|
|
#endif //_WX_EMAIL_H_
|
|
|