#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 using namespace std; class COutlookMng { public: COutlookMng(void); ~COutlookMng(void); BOOL Init(void); BOOL SendMail(CString strTitle, CString strFilePath, CString strFileName); public: vector m_vecAddress; BOOL InsertAddress(CString strAddress); private: COutlookApp m_appOutLook; };