无法将邮件迁移到“垃圾箱”
我正在将一些邮件迁移到 Google Apps 中的“垃圾箱”。
使用 Google API Ver 2:
代码示例:
MailItemEntry[] entries = new MailItemEntry[1];
entries[0] = new MailItemEntry();
entries[0].Rfc822Msg = new Rfc822MsgElement(msg);
entries[0].MailItemProperties.Add(MailItemPropertyElement.TRASH);
我尝试过:
entries[0].Labels.Add(new LabelElement("Trash"));
如何将邮件迁移到 Google Apps 中的“TRASH”?
谢谢
I am migrating some mails to 'TRASH' in Google Apps.
Using Google API Ver 2:
Code Sample :
MailItemEntry[] entries = new MailItemEntry[1];
entries[0] = new MailItemEntry();
entries[0].Rfc822Msg = new Rfc822MsgElement(msg);
entries[0].MailItemProperties.Add(MailItemPropertyElement.TRASH);
I tried with :
entries[0].Labels.Add(new LabelElement("Trash"));
How can i migrate mails to "TRASH" in Google Apps ?
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Google Apps 或 Gmail 仅将过去 30 天的邮件保留在“已删除邮件”中。
Google Apps or Gmail keeps only Last 30 Days mails in Trash.