123456789101112131415161718192021222324252627282930313233 |
- syntax = "proto3";
- package common;
- message MailBody {
- string plainText = 1;
- string richText = 2;
- repeated AttachmentHeader attachments = 3;
- }
- message MailHeader {
- string from = 1;
- string to = 2;
- string cc = 3;
- string bcc = 4;
- string date = 5;
- string subject = 6;
- }
- message Mail {
- MailHeader header = 1;
- MailBody body = 2;
- }
- message Attachment {
- AttachmentHeader header = 1;
- bytes data = 2;
- }
- message AttachmentHeader {
- string fileName = 1;
- string contentType = 2;
- }
|