예제 #1
0
파일: Mailer.cs 프로젝트: kav-it/SharpLib
        private bool AddRecipient(String email, HowTo howTo)
        {
            MapiRecipDesc recipient = new MapiRecipDesc();

            recipient.RecipClass = (int)howTo;
            recipient.Name       = email;
            _recipients.Add(recipient);

            return(true);
        }
예제 #2
0
파일: Mailer.cs 프로젝트: kav-it/SharpLib
        private bool AddRecipient(String email, HowTo howTo)
        {
            MapiRecipDesc recipient = new MapiRecipDesc();

            recipient.RecipClass = (int)howTo;
            recipient.Name = email;
            _recipients.Add(recipient);

            return true;
        }