Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. var msgs = imap.SearchMessages(
  2. SearchCondition.From("no-reply@mydomain.com").And(
  3. SearchCondition.SentSince(new DateTime(year, month, day))
  4. ));
  5.  
  6. var msgs = imap.SearchMessages(
  7. SearchCondition.From("no-reply@mydomain.com")
  8. );
  9.  
  10. var msgs = imap.SearchMessages(
  11. SearchCondition.SentSince(new DateTime(year, month, day))
  12. );
  13.  
  14. xm005 UID SEARCH (FROM "no-reply@mydomain.com") (SENTSINCE 11-Sep-2012)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement