I want to add Follow up by like 2 days or something, can I add that somehow?

VB Code:
  1. stSubject = ":: Overdue Item :: -Supply-"
  2.     stSubject = stSubject & "  Freight # " & stTracking
  3.    
  4.     stText = "Here is the information for the overdue item at TMO." & Chr$(13) & Chr$(13) & _
  5.              "Tracking/Freight Number: " & stTracking & Chr$(13) & _
  6.              "Contract/PO Number: " & stContract & Chr$(13) & _
  7.              "Vendors Name: " & stVendor & Chr$(13) & _
  8.              "Description of Items: " & stDescription & Chr$(13) & Chr$(13) & _
  9.              "Received Date: " & RecDate & Chr$(13) & _
  10.              "Receiver at TMO: " & stReceiver & Chr$(13) & Chr$(13) & _
  11.              "Items belong to: " & stItems & Chr$(13) & _
  12.              "RAs Name: " & stRAname & Chr$(13) & _
  13.              "RAs Phone Number: " & stRAphone & Chr$(13) & Chr$(13) & _
  14.              "When picking up your item from Supply, please bring a copy of this email with you." & Chr$(13) & _
  15.              "This is an automated message. Please do not respond to this e-mail."
  16.  
  17.     'Write the e-mail content for sending to assignee
  18.     DoCmd.SendObject , , acFormatTXT, stEmailAddress3 & ";" & stEmailAddress, stEmailAddress4 & ";" & stEmailAddress2, , stSubject, stText, -1