29 lines
542 B
C++
29 lines
542 B
C++
#pragma once
|
|
|
|
#include "COutlookApp.h"
|
|
#include "CNameSpace.h"
|
|
#include "CAppointmentItem.h"
|
|
#include "CContactItem.h"
|
|
#include "CMailItem.h"
|
|
#include "CAttachments.h"
|
|
#include "CAttachment.h"
|
|
#include "CRecipients.h"
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class COutlookMng
|
|
{
|
|
public:
|
|
COutlookMng(void);
|
|
~COutlookMng(void);
|
|
BOOL Init(void);
|
|
BOOL SendMail(CString strTitle, CString strFilePath, CString strFileName);
|
|
public:
|
|
vector<CString> m_vecAddress;
|
|
BOOL InsertAddress(CString strAddress);
|
|
|
|
private:
|
|
COutlookApp m_appOutLook;
|
|
};
|