Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. caseObject.Email_Reply__c = 'replied yesterday';
  2.  
  3. }
  4. else if(caseObject.EmailMessages[0].CreatedDate >= Date.today().addDays(-7)) {
  5.  
  6. caseObject.Email_Reply__c = 'replied this week';
  7. }
  8.  
  9. else {
  10. caseObject.Email_Reply__c = 'replied this month';
  11.  
  12. }
  13. }
  14. }
  15. update caseList;
  16. System.debug('updated email:::' +caseList);
  17. }
  18. }
  19. catch(Exception exc){
  20. System.debug('Exception:>>>>' +exc.getMessage()+ '<<<---line numberr>>>' +exc.getLineNumber());
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement