Files
FC1/Editor/Mailer.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

34 lines
1.1 KiB
C++

////////////////////////////////////////////////////////////////////////////
//
// Crytek Engine Source File.
// Copyright (C), Crytek Studios, 2001.
// -------------------------------------------------------------------------
// File name: Mailer.h
// Version: v1.00
// Created: 5/12/2001 by Timur.
// Compilers: Visual C++ 6.0
// Description: Send mail.
// -------------------------------------------------------------------------
// History:
//
////////////////////////////////////////////////////////////////////////////
#ifndef __Mailer_h__
#define __Mailer_h__
#if _MSC_VER > 1000
#pragma once
#endif
class CMailer
{
public:
static bool SendMessage(const CString& _subject, // E-Mail Subject
const CString& _messageBody, // Message Text
const std::vector<CString> &_recipients, // All Recipients' Addresses
const std::vector<CString> &_attachments, // All File Attachments
bool bShowDialog); // Whether to allow editing by user
};
#endif // __Mailer_h__