コード例 #1
0
ファイル: ReceiveHelper.cs プロジェクト: zformular/ValueMail
        public static MailModel GetMail(String uid, String mime)
        {
            var       modelSet = ValueMIME.SerializeMIME(mime);
            MailModel model    = new MailModel(
                GetMailHead(uid, mime),
                modelSet[MIMEPrefix.BodyText],
                modelSet[MIMEPrefix.BodyHtml],
                modelSet.Attachments
                );

            return(model);
        }