-
Notifications
You must be signed in to change notification settings - Fork 0
/
email_processing.log
5870 lines (5870 loc) · 542 KB
/
email_processing.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-02-27 13:42:26,692 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:42:39,896 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:42:40,215 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:43:00,847 - ERROR - Error processing email: <unknown>.Address
2024-02-27 13:43:00,849 - ERROR - Error processing emails: (-2147023174, 'The RPC server is unavailable.', None, None)
2024-02-27 13:43:15,209 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:43:18,269 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:43:18,419 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:44:04,980 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:44:23,132 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:44:56,189 - ERROR - Error processing email: <unknown>.Recipients
2024-02-27 13:46:35,742 - INFO - Starting to process emails.
2024-02-27 14:09:48,748 - INFO - Starting to process emails.
2024-02-27 14:09:48,817 - INFO - Processed email: RE: [External Sender]Bi-Monthly Responsiveness
2024-02-27 14:12:38,342 - INFO - Starting to process emails.
2024-02-27 14:12:38,475 - INFO - Processed email: RE: [External Sender]Bi-Monthly Responsiveness
2024-02-27 14:12:38,487 - INFO - Processed email: [External Sender]Response requested on Case 01026340: Can't delete field information ref:!00Dj001qbqs.!500VQ06deWn:ref
2024-02-27 14:12:38,506 - INFO - Processed email: [External Sender]Tesla's robot walks \U0001f916 , private moon landing \U0001f680, lessons running SaaS startup \U0001f468\u200d\U0001f4bb
2024-02-27 14:12:38,523 - INFO - Processed email: [External Sender]Techstars’ Decline \U0001f4c9, Reaching $100M ARR \U0001f4b8, Finding Your ICP \U0001f464
2024-02-27 14:12:38,537 - INFO - Processed email: [External Sender]Gemini image generation problem \U0001f6d1, Microsoft AI servers \U0001f4be, simpler RL algorithms beat PPO \U0001f916
2024-02-27 14:12:38,548 - INFO - Processed email: IMPORTANT: CHANGES IN SUBMITTING MONTHLY REIMBURSEMENT REQUESTS
2024-02-27 14:12:38,557 - INFO - Processed email: Free and low cost medical equipment
2024-02-27 14:12:38,567 - INFO - Processed email: Outlook font change
2024-02-27 14:12:38,586 - INFO - Processed email: [External Sender]Apricot Review Follow Up
2024-02-27 14:12:38,595 - INFO - Processed email: Corrections on File
2024-02-27 14:12:38,608 - INFO - Processed email: FW: Education & Employment info
2024-02-27 14:12:38,619 - INFO - Processed email: Re: Education & Employment info
2024-02-27 14:12:38,629 - INFO - Processed email: RE: Education & employment info
2024-02-27 14:12:38,640 - INFO - Processed email: Re: Education & employment info
2024-02-27 14:12:38,651 - INFO - Processed email: FW: Education Employment Spread sheet
2024-02-27 14:12:38,661 - INFO - Processed email: FW: Education & employment info
2024-02-27 14:12:38,671 - INFO - Processed email: Sultan E&E tracking list
2024-02-27 14:12:38,680 - INFO - Processed email: RE: Education & employment info
2024-02-27 14:12:38,692 - INFO - Processed email: Education and Employment Update
2024-02-27 14:12:38,711 - INFO - Processed email: RE: A few Apricot Updates
2024-02-27 14:12:38,722 - INFO - Processed email: FW: [External Sender]I am sharing 'Pregnant and Parentiing Referral Form- AnSe' with you
2024-02-27 14:12:38,732 - INFO - Processed email: Apricot
2024-02-27 14:12:38,744 - INFO - Processed email: RE: Affordable units
2024-02-27 14:12:38,755 - INFO - Processed email: FW: Missing Apricot Records
2024-02-27 14:12:38,764 - INFO - Processed email: Quarterly fun pic
2024-02-27 14:12:38,774 - INFO - Processed email: Resident Engagement Activities
2024-02-27 14:12:38,782 - INFO - Processed email: FW: [External Sender]RE: Documents for monitoring
2024-02-27 14:12:38,792 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:38,801 - INFO - Processed email: [External Sender]
2024-02-27 14:12:38,810 - INFO - Processed email: Moving to Healing-Centered Engagement
2024-02-27 14:12:38,821 - INFO - Processed email: [External Sender]ClientTrack Sync Update 8/22/23 - Complete!
2024-02-27 14:12:38,830 - INFO - Processed email: Christine Pfiester shared "August 21 2023 Services Intake Board " with you
2024-02-27 14:12:38,840 - INFO - Processed email: CFS Contact Log
2024-02-27 14:12:38,850 - INFO - Processed email: [External Sender]RE: HMIS User Group Meeting
2024-02-27 14:12:38,863 - INFO - Processed email: Fw: [External Sender]RE: Hello everyone! Happy August!
2024-02-27 14:12:38,873 - INFO - Processed email: FW: [External Sender]Apricot New Account Manager
2024-02-27 14:12:38,882 - INFO - Processed email: RE: Apricot - Report of Clients Receiving TANF
2024-02-27 14:12:38,893 - INFO - Processed email: Christine Pfiester shared "August 8th 2023 Services Intake Board " with you.
2024-02-27 14:12:38,905 - INFO - Processed email: FW: NCV - C102 Washington - NTV
2024-02-27 14:12:38,913 - INFO - Processed email: RE: Narcan Training
2024-02-27 14:12:38,926 - INFO - Processed email: FW: Homeless Applicant Screening Fees
2024-02-27 14:12:38,938 - INFO - Processed email: EVHA Specialist contacts
2024-02-27 14:12:38,948 - INFO - Processed email: DEI MOMENT: RECOGNIZE AND LEARN ABOUT THE AMERICANS WITH DISABILITIES ACT (ADA)
2024-02-27 14:12:38,961 - INFO - Processed email: FW: Topic for Monday
2024-02-27 14:12:38,976 - INFO - Processed email: Parking at Housing Hope Admin Building - Additional Information
2024-02-27 14:12:38,985 - INFO - Processed email: Quarterly HIC instructions
2024-02-27 14:12:38,997 - INFO - Processed email: Christine Pfiester shared "Housing Hope-April2023-ByClientList July 2023 review" with you.
2024-02-27 14:12:39,009 - INFO - Processed email: [External Sender]Update to Case 00983743 [ ref:_00Dj01qbqs._5005b1whWOE:ref ]
2024-02-27 14:12:39,022 - INFO - Processed email: Vincentia Quansah shared "JULY 17th 2023 Copy of Services Intake Board Document (version 1) (1) (1)" with you.
2024-02-27 14:12:39,037 - INFO - Processed email: [External Sender]RE: Stuff the Bus for Kids- Volunteer TODAY
2024-02-27 14:12:39,048 - INFO - Processed email: AN IMPORTANT MESSAGE FROM OUR FINANCE DEPARTMENT: WA CARES FUND
2024-02-27 14:12:39,061 - INFO - Processed email: BIG THANK YOU!
2024-02-27 14:12:39,073 - INFO - Processed email: Fw: [External Sender]Building Changes Summer & Fall Trainings
2024-02-27 14:12:39,089 - INFO - Processed email: Vincentia Quansah shared "JULY 3RD 2023 Copy of Services Intake Board Document (version 1) (1) (1)" with you.
2024-02-27 14:12:39,099 - INFO - Processed email: Vincentia Quansah shared "July 3rd2023 Copy of Services Intake Board Document (version 1) (1) (1)" with you.
2024-02-27 14:12:39,111 - INFO - Processed email: Training Handouts
2024-02-27 14:12:39,124 - INFO - Processed email: summer started last week
2024-02-27 14:12:39,135 - INFO - Processed email: Expectations document
2024-02-27 14:12:39,145 - INFO - Processed email: FW: [External Sender]Wildfire Smoke Preparedness
2024-02-27 14:12:39,157 - INFO - Processed email: FW: [External Sender]FREE Citizenship Test Preparation at CCR
2024-02-27 14:12:39,168 - INFO - Processed email: Fw: I am sharing 'SCLS All Clinics Flyer (Rev. 5.19.23) (3)' with you
2024-02-27 14:12:39,179 - INFO - Processed email: [External Sender]HuggingGPT - a Hugging Face Space by microsoft
2024-02-27 14:12:39,194 - INFO - Processed email: [External Sender]GitHub - Significant-Gravitas/Auto-GPT: An experimental open-source attempt to make GPT-4 fully autonomous.
2024-02-27 14:12:39,206 - INFO - Processed email: FW: [External Sender]DSHS Consent Form in French
2024-02-27 14:12:39,217 - INFO - Processed email: FW: [External Sender]FW: - Foodie Tuesdays June - August 2023
2024-02-27 14:12:39,228 - INFO - Processed email: FW: New SP Client/FSC list
2024-02-27 14:12:39,240 - INFO - Processed email: FW:Expanded Health Care Access
2024-02-27 14:12:39,249 - INFO - Processed email: Your May timesheet
2024-02-27 14:12:39,260 - INFO - Processed email: [External Sender]Brain Chemistry
2024-02-27 14:12:39,272 - INFO - Processed email: Fw: School Refusal: What to Do When a Child Won’t Go to School | ParentMap
2024-02-27 14:12:39,282 - INFO - Processed email: time to jam out!
2024-02-27 14:12:39,296 - INFO - Processed email: RE: Info purposes only- Station Place - Blue Star Security
2024-02-27 14:12:39,310 - INFO - Processed email: ANNOUNCEMENT: Changes in Resource Development and Property Management Departments
2024-02-27 14:12:39,322 - INFO - Processed email: FW: [External Sender]RE: verification of disability
2024-02-27 14:12:39,336 - INFO - Processed email: Survey Results
2024-02-27 14:12:39,355 - INFO - Processed email: It's Autism ACCEPTANCE Month!
2024-02-27 14:12:39,369 - INFO - Processed email: OPEN DOORS: A WEEKLY EMAIL COMMUNICATION FOR PROPERTY AND SERVICE TEAM MEMBERS
2024-02-27 14:12:39,381 - INFO - Processed email: addresses in Apricot
2024-02-27 14:12:39,395 - INFO - Processed email: Fw: [External Sender]Updated Landlord Interest List 4.23
2024-02-27 14:12:39,412 - INFO - Processed email: Documents needed with applications
2024-02-27 14:12:39,426 - INFO - Processed email: I am sharing 'ORCA LIFT Snohomish County (Updated 04.11.23)' with you
2024-02-27 14:12:39,443 - INFO - Processed email: Re: Agenda item
2024-02-27 14:12:39,458 - INFO - Processed email: Re: Agenda item
2024-02-27 14:12:39,472 - INFO - Processed email: Agenda item
2024-02-27 14:12:39,487 - INFO - Processed email: [External Sender]RE: HMIS User Group Meeting
2024-02-27 14:12:39,503 - INFO - Processed email: Renew Home & Decor | CLOSED SATURDAY, APRIL 15th
2024-02-27 14:12:39,517 - INFO - Processed email: Box Contents label
2024-02-27 14:12:39,531 - INFO - Processed email: Apricot
2024-02-27 14:12:39,550 - INFO - Processed email: employee list
2024-02-27 14:12:39,568 - INFO - Processed email: FW: survey
2024-02-27 14:12:39,586 - INFO - Processed email: Fw: [External Sender]Letter Addressing Long Wait Times for Stakeholder-Community Partners.
2024-02-27 14:12:39,599 - INFO - Processed email: RE: Survey
2024-02-27 14:12:39,612 - INFO - Processed email: Benefit Information
2024-02-27 14:12:39,626 - INFO - Processed email: [External Sender]HMIS Training Login
2024-02-27 14:12:39,637 - INFO - Processed email: Your timesheet template
2024-02-27 14:12:39,648 - INFO - Processed email: TIME SENSITIVE: Important Announcement from Donna Moulton, CEO
2024-02-27 14:12:39,661 - INFO - Processed email: reimbursement form
2024-02-27 14:12:39,673 - INFO - Processed email: RE: [External Sender]Reminder! Newly Released Time-Based Alerts in Apricot 360!
2024-02-27 14:12:39,688 - INFO - Processed email: [External Sender]Book a Training
2024-02-27 14:12:39,698 - INFO - Processed email: RE: Apricot Training
2024-02-27 14:12:39,711 - INFO - Processed email: [External Sender]Christine Pfiester is forwarding an email to you
2024-02-27 14:12:39,723 - INFO - Processed email: FW: [Ticket #4009] extension for Dane
2024-02-27 14:12:39,735 - INFO - Processed email: pw
2024-02-27 14:12:39,745 - INFO - Processed email: Social Solutions training module
2024-02-27 14:12:39,755 - INFO - Processed email: [External Sender]Welcome to Apricot!
2024-02-27 14:12:39,765 - INFO - Processed email: Benefit Information - New Resource
2024-02-27 14:12:39,775 - INFO - Processed email: email signature
2024-02-27 14:12:39,787 - INFO - Processed email: Wellspring EAP Resources for ALL TEAM MEMBERS
2024-02-27 14:12:39,796 - INFO - Processed email: [External Sender]Pre-HMIS New User Training: Document Review
2024-02-27 14:12:39,809 - INFO - Processed email: Fwd: [External Sender]*Friendly Reminder* YouthRAP March 21
2024-02-27 14:12:39,819 - INFO - Processed email: [External Sender]Kyra Strom has added Dane Wagenhoffer to Housing Hope & HopeWorks Social Enterprises Online Learning
2024-02-27 14:12:39,832 - INFO - Processed email: Reminder - Housing Hope Campus Alarm System Procedure
2024-02-27 14:12:39,844 - INFO - Processed email: CONSOLIDATED TEAM MEMBER SHOUT OUTS: STARTING THIS WEEK
2024-02-27 14:12:39,854 - INFO - Processed email: Agency Phone Lists and Org Charts
2024-02-27 14:12:39,864 - INFO - Processed email: additional info RE: Reminder - Shred
2024-02-27 14:12:39,875 - INFO - Processed email: Reminder - Shred
2024-02-27 14:12:39,887 - INFO - Processed email: Available Units (1).xlsx
2024-02-27 14:12:39,900 - INFO - Processed email: [External Sender]Homelessness is War
2024-02-27 14:12:39,914 - INFO - Processed email: Re: Best Wishes on Your Next Adventure
2024-02-27 14:12:39,925 - INFO - Processed email: Fwd: [External Sender]FSS Program follow up
2024-02-27 14:12:39,939 - INFO - Processed email: RE: Important Benefit Update - Aflac - in person Q&A
2024-02-27 14:12:39,953 - INFO - Processed email: SOAR Training Handouts & Julia Reardon Contact Info
2024-02-27 14:12:39,967 - INFO - Processed email: I see you in the New York Times!
2024-02-27 14:12:39,980 - INFO - Processed email: Notes from Session 1: Working with People Affected by Substance Use
2024-02-27 14:12:39,993 - INFO - Processed email: SLIDES: Substance Use Training Session 2
2024-02-27 14:12:40,018 - INFO - Processed email: RE: Missing Apricot Records
2024-02-27 14:12:40,032 - INFO - Processed email: RE: Kindergarten Readiness Numbers
2024-02-27 14:12:40,043 - INFO - Processed email: Kindergarten Readiness Numbers
2024-02-27 14:12:40,055 - INFO - Processed email: FW: [External Sender]Hollie Levtzow shared a recording with you
2024-02-27 14:12:40,066 - INFO - Processed email: TH Data
2024-02-27 14:12:40,076 - INFO - Processed email: Data Training Doc
2024-02-27 14:12:40,087 - INFO - Processed email: RE: [External Sender]RE: HMIS 94918
2024-02-27 14:12:40,106 - INFO - Processed email: RE: Missing Apricot Records
2024-02-27 14:12:40,116 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:40,128 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,139 - INFO - Processed email: [External Sender]Welcome to Planyway
2024-02-27 14:12:40,149 - INFO - Processed email: [External Sender]New application authorized in your Trello account
2024-02-27 14:12:40,161 - INFO - Processed email: Password Check Required Immediately
2024-02-27 14:12:40,180 - INFO - Processed email: Your digest email
2024-02-27 14:12:40,192 - INFO - Processed email: [External Sender]Celebrate Service Anniversaries with Kudoboard
2024-02-27 14:12:40,209 - INFO - Processed email: Welcome to your digest
2024-02-27 14:12:40,224 - INFO - Processed email: RE: City of Marysville CDBG Quarterly Reporting
2024-02-27 14:12:40,237 - INFO - Processed email: Re: City of Marysville CDBG Quarterly Reporting
2024-02-27 14:12:40,250 - INFO - Processed email: [External Sender]Your scheduled report is ready (Run report Clients Served Report for Dane Wagenhoffer (AM6)).
2024-02-27 14:12:40,273 - INFO - Processed email: [External Sender]
2024-02-27 14:12:40,288 - INFO - Processed email: Affordable units
2024-02-27 14:12:40,299 - INFO - Processed email: THB Data question
2024-02-27 14:12:40,312 - INFO - Processed email: RE: Apricot feature request
2024-02-27 14:12:40,323 - INFO - Processed email: FreePBX Voicemail Notification
2024-02-27 14:12:40,336 - INFO - Processed email: [External Sender]Next Tuesday! Webinar with Q&A on Low-Barrier Shelter Models
2024-02-27 14:12:40,347 - INFO - Processed email: [External Sender]12 no-cost ways to learn generative AI
2024-02-27 14:12:40,375 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,386 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:40,401 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:40,411 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,423 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,434 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,446 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,460 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:40,471 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,481 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:40,492 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,506 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,517 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,530 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,541 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,552 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,563 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,577 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,590 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,602 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,615 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,625 - INFO - Processed email: RE: Onward Learning Audit
2024-02-27 14:12:40,636 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:40,646 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,658 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,673 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,687 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,701 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,720 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,733 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,746 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,759 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,772 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:40,784 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,796 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,807 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:40,819 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,830 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,842 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,854 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,866 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,877 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,889 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,901 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,914 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,928 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,945 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,956 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,965 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,976 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,986 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:40,995 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,005 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,014 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,025 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,038 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,051 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,065 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,081 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,094 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,108 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,121 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,131 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,144 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,158 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,170 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,182 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:41,194 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,206 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:41,214 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,224 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,234 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,243 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,254 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,264 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,274 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,284 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,294 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,306 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,317 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,327 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,339 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,349 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,361 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,373 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,387 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,400 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,414 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,429 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,445 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,460 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,472 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,485 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,496 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,508 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,519 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,529 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,540 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,551 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,560 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,571 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,581 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,592 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:41,602 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,613 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,624 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,635 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,644 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,654 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,664 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,673 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,682 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,693 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,703 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,712 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,721 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,729 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,739 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,747 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,762 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,773 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,782 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:41,793 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,804 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,819 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,828 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,838 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,850 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,864 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,875 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,886 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,897 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,909 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:41,920 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:41,932 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,947 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,961 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,975 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:41,990 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,005 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,019 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,032 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,043 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,053 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,062 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,073 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,083 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,094 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,104 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,112 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,124 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,133 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,145 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,154 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,163 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,173 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,182 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:42,192 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,202 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,211 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,221 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:42,230 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,240 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,251 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,260 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,270 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,278 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,289 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,300 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,309 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,319 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,328 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,338 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,346 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,359 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,370 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,381 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,394 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,406 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,415 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,427 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,440 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:42,452 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:42,463 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,475 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,485 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,493 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,503 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,512 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,522 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,531 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,541 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,551 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,561 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,582 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,593 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,604 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,613 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,623 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:42,632 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,642 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,653 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,663 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,673 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,683 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:42,696 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,705 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,714 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,724 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,734 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,743 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:42,772 - INFO - Processed email: Automatic reply: Apricot Preparations
2024-02-27 14:12:42,782 - INFO - Processed email: Reminder: smoking and/or vaping requirements - HH Admin Bldg.
2024-02-27 14:12:42,795 - INFO - Processed email: CFS at Services Intakes
2024-02-27 14:12:42,804 - INFO - Processed email: [Ticket #5410] Ram
2024-02-27 14:12:42,849 - INFO - Processed email: RE: Maria Martinez Donis Homeless verification.
2024-02-27 14:12:42,862 - INFO - Processed email: Re: Application for Lincoln Hill Village E202
2024-02-27 14:12:42,874 - INFO - Processed email: FW: background check D Hidecker
2024-02-27 14:12:42,885 - INFO - Processed email: RE: [External Sender]HMIS 80428
2024-02-27 14:12:42,897 - INFO - Processed email: RE: Search by Family Support Coach
2024-02-27 14:12:42,910 - INFO - Processed email: RE: [External Sender]HMIS 80428
2024-02-27 14:12:42,920 - INFO - Processed email: RE: [External Sender]HMIS 80428
2024-02-27 14:12:42,930 - INFO - Processed email: RE: [External Sender]HMIS 80428
2024-02-27 14:12:42,942 - INFO - Processed email: [Ticket #5410] Ram
2024-02-27 14:12:42,954 - INFO - Processed email: RE: SP 313 Peterson background check request
2024-02-27 14:12:42,962 - INFO - Processed email: [External Sender]HMIS 80428
2024-02-27 14:12:42,972 - INFO - Processed email: [External Sender]Deposit
2024-02-27 14:12:42,981 - INFO - Processed email: RE: [External Sender]HMIS 80626
2024-02-27 14:12:42,991 - INFO - Processed email: Re: List of all locations
2024-02-27 14:12:43,001 - INFO - Processed email: List of all locations
2024-02-27 14:12:43,009 - INFO - Processed email: Re: [External Sender]HMIS 80626
2024-02-27 14:12:43,023 - INFO - Processed email: RE: Letter of Appeal
2024-02-27 14:12:43,033 - INFO - Processed email: RE: [External Sender]HMIS 80626
2024-02-27 14:12:43,045 - INFO - Processed email: RE: [External Sender]HMIS 80626
2024-02-27 14:12:43,056 - INFO - Processed email: Letter of Appeal
2024-02-27 14:12:43,064 - INFO - Processed email: Re: SP 313 Peterson background check request
2024-02-27 14:12:43,075 - INFO - Processed email: Re: SP 313 Peterson background check request
2024-02-27 14:12:43,086 - INFO - Processed email: [External Sender]Reminder for Sam Quinones: A Community Dialog about Fentanyl, Meth and the Opioid Crisis
2024-02-27 14:12:43,095 - INFO - Processed email: FW: 208 Commerce
2024-02-27 14:12:43,106 - INFO - Processed email: RE: [External Sender]Apricot Notification
2024-02-27 14:12:43,118 - INFO - Processed email: RE: SP 313 Peterson background check request
2024-02-27 14:12:43,129 - INFO - Processed email: TYP September 2023
2024-02-27 14:12:43,144 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:43,157 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:43,166 - INFO - Processed email: FW: EHA Rules
2024-02-27 14:12:43,175 - INFO - Processed email: RE: Commerce Building
2024-02-27 14:12:43,185 - INFO - Processed email: [External Sender]Gerry was high on crack.
2024-02-27 14:12:43,193 - INFO - Processed email: Copy of HASCO Powerpoint from Jodie Halsne
2024-02-27 14:12:43,203 - INFO - Processed email: Re: Shawn Wheeler Details
2024-02-27 14:12:43,211 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:43,223 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:43,233 - INFO - Processed email: Re: Apricot Program Enrollment Question
2024-02-27 14:12:43,242 - INFO - Processed email: RE: Apricot Program Enrollment Question
2024-02-27 14:12:43,252 - INFO - Processed email: Re: Apricot Program Enrollment Question
2024-02-27 14:12:43,261 - INFO - Processed email: RE: Apricot Program Enrollment Question
2024-02-27 14:12:43,274 - INFO - Processed email: [External Sender]Hate no-shows? You'll love workflows.
2024-02-27 14:12:43,282 - INFO - Processed email: Medicare Part D Notice
2024-02-27 14:12:43,293 - INFO - Processed email: RE: TYP/CFS Monthly Amplifund Report for City of Everett (CoE)
2024-02-27 14:12:43,304 - INFO - Processed email: Apricot Program Enrollment Question
2024-02-27 14:12:43,312 - INFO - Processed email: Re: Applying for Social Security
2024-02-27 14:12:43,323 - INFO - Processed email: Christine Pfiester shared "Sept 25 2023 Services Intake Board " with you
2024-02-27 14:12:43,331 - INFO - Processed email: RE: Applying for Social Security
2024-02-27 14:12:43,342 - INFO - Processed email: email goal status to supervisor
2024-02-27 14:12:43,352 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:43,361 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:43,371 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:43,379 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:43,390 - INFO - Processed email: RE: random ramblings
2024-02-27 14:12:43,399 - INFO - Processed email: RE: Applying for Social Security
2024-02-27 14:12:43,409 - INFO - Processed email: Commerce Building
2024-02-27 14:12:43,419 - INFO - Processed email: Subject: [External Sender]Navigating Benefits Cliffs: Barriers and Solutions
2024-02-27 14:12:43,428 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:43,439 - INFO - Processed email: [External Sender]Elevate Your Skills: Prevention Core Competencies Training Post-NAADAC Conference
2024-02-27 14:12:43,449 - INFO - Processed email: [External Sender]Reminder: "Sept 18 2023 Services Intake Board" has been shared with you
2024-02-27 14:12:43,459 - INFO - Processed email: RE: [External Sender]WA Covenant Homeownership Study: Community Forums & Survey
2024-02-27 14:12:43,469 - INFO - Processed email: Fw: [External Sender]WA Covenant Homeownership Study: Community Forums & Survey
2024-02-27 14:12:43,478 - INFO - Processed email: Monday Meeting Agenda 9-25-23
2024-02-27 14:12:43,489 - INFO - Processed email: Re: random ramblings
2024-02-27 14:12:43,497 - INFO - Processed email: [External Sender]Navigating Benefits Cliffs: Barriers and Solutions
2024-02-27 14:12:43,507 - INFO - Processed email: Re: random ramblings
2024-02-27 14:12:43,516 - INFO - Processed email: [External Sender]Book a meeting without switching tabs!
2024-02-27 14:12:43,526 - INFO - Processed email: random ramblings
2024-02-27 14:12:43,535 - INFO - Processed email: RE: [External Sender]Apricot Notification
2024-02-27 14:12:43,545 - INFO - Processed email: Automatic reply: [External Sender]RE: Available units and introduction
2024-02-27 14:12:43,557 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21733 has been verified
2024-02-27 14:12:43,570 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21733 has been updated
2024-02-27 14:12:43,579 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 has been updated
2024-02-27 14:12:43,589 - INFO - Processed email: RE: [External Sender]HMIS 80626
2024-02-27 14:12:43,597 - INFO - Processed email: RE: SP 215
2024-02-27 14:12:43,607 - INFO - Processed email: Re: Emergency Contact
2024-02-27 14:12:43,616 - INFO - Processed email: Emergency Contact
2024-02-27 14:12:43,627 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:43,637 - INFO - Processed email: additional reminder - Visitor Parking spaces
2024-02-27 14:12:43,645 - INFO - Processed email: reminder - Visitor Parking spaces
2024-02-27 14:12:43,657 - INFO - Processed email: Sharing some information
2024-02-27 14:12:43,666 - INFO - Processed email: RE: Fall Fun Vote
2024-02-27 14:12:43,678 - INFO - Processed email: RE: Fall Fun Vote
2024-02-27 14:12:43,688 - INFO - Processed email: Re: Fall Fun Vote
2024-02-27 14:12:43,699 - INFO - Processed email: Fall Fun Vote
2024-02-27 14:12:43,708 - INFO - Processed email: Fw: [External Sender]Youth Detox Flyer
2024-02-27 14:12:43,719 - INFO - Processed email: Weekly Team Member Shout Outs!!
2024-02-27 14:12:43,727 - INFO - Processed email: Fw: [External Sender]HMIS 91298
2024-02-27 14:12:43,737 - INFO - Processed email: [External Sender][QUARTERLY] EMPLOYMENT AND EDUCATION (Homeless Family Services, excl. Emergency Shelter) on Data Projects is due in a day
2024-02-27 14:12:43,746 - INFO - Processed email: RE: [External Sender]HMIS 91298
2024-02-27 14:12:43,756 - INFO - Processed email: Mitchel Eckhoff screening
2024-02-27 14:12:43,765 - INFO - Processed email: RE: [External Sender]HMIS 80626
2024-02-27 14:12:43,777 - INFO - Processed email: [External Sender]FH Training Certificate
2024-02-27 14:12:43,788 - INFO - Processed email: New Email
2024-02-27 14:12:43,797 - INFO - Processed email: [External Sender]RE: CE User Group Meeting
2024-02-27 14:12:43,807 - INFO - Processed email: Checking in from Denise -- COVID tests and information
2024-02-27 14:12:43,816 - INFO - Processed email: Fwd: [External Sender]FW: Please Share With LPA
2024-02-27 14:12:43,826 - INFO - Processed email: Re: Application for Station Place 203: Emargeline Taylor
2024-02-27 14:12:43,836 - INFO - Processed email: RE: Application for Station Place 203: Emargeline Taylor
2024-02-27 14:12:43,846 - INFO - Processed email: Fw: [External Sender]HHRC Newsletter: National Recovery Month, Peer Integration Resources, and more
2024-02-27 14:12:43,856 - INFO - Processed email: Re: Hidden Rules Among Classes
2024-02-27 14:12:43,865 - INFO - Processed email: RE: New notices to vacate
2024-02-27 14:12:43,876 - INFO - Processed email: RE: New notices to vacate
2024-02-27 14:12:43,887 - INFO - Processed email: RE: Hidden Rules Among Classes
2024-02-27 14:12:43,897 - INFO - Processed email: RE: Hidden Rules Among Classes
2024-02-27 14:12:43,908 - INFO - Processed email: Re: Application for Twin Lakes E103 93938
2024-02-27 14:12:43,919 - INFO - Processed email: [External Sender]New "Empathy-Change the World" T-shirt
2024-02-27 14:12:43,928 - INFO - Processed email: New notices to vacate
2024-02-27 14:12:43,939 - INFO - Processed email: [External Sender]HHRC Newsletter: National Recovery Month, Peer Integration Resources, and more
2024-02-27 14:12:43,948 - INFO - Processed email: Re: September OSHA Training
2024-02-27 14:12:43,957 - INFO - Processed email: September OSHA Training
2024-02-27 14:12:43,967 - INFO - Processed email: Re: Hidden Rules Among Classes
2024-02-27 14:12:43,976 - INFO - Processed email: RE: Hidden Rules Among Classes
2024-02-27 14:12:43,992 - INFO - Processed email: Hidden Rules Among Classes
2024-02-27 14:12:44,006 - INFO - Processed email: [External Sender]Struggling with no-shows? You'll love Workflows.
2024-02-27 14:12:44,022 - INFO - Processed email: Re: SP 313 Peterson background check request
2024-02-27 14:12:44,037 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:44,049 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:44,068 - INFO - Processed email: RE: SP 313 Peterson background check request
2024-02-27 14:12:44,080 - INFO - Processed email: Applying for Social Security
2024-02-27 14:12:44,096 - INFO - Processed email: [External Sender]Welcome to the Bonterra Academy (login information)
2024-02-27 14:12:44,110 - INFO - Processed email: [External Sender]RE: HMIS 52833
2024-02-27 14:12:44,120 - INFO - Processed email: Re: Apricot Training
2024-02-27 14:12:44,130 - INFO - Processed email: Re: Apricot Training
2024-02-27 14:12:44,141 - INFO - Processed email: Apricot Training
2024-02-27 14:12:44,150 - INFO - Processed email: [External Sender]SamMcCown has joined your Personal Meeting Room
2024-02-27 14:12:44,159 - INFO - Processed email: FW: Sept OSHA training is an annual training requirement.
2024-02-27 14:12:44,169 - INFO - Processed email: Re: Application for Station Place 203: Emargeline Taylor
2024-02-27 14:12:44,179 - INFO - Processed email: [External Sender]Reaction Daily Digest - Tuesday, September 19, 2023
2024-02-27 14:12:44,190 - INFO - Processed email: Re: Danielle's Son's Social Security Card
2024-02-27 14:12:44,198 - INFO - Processed email: FreePBX Voicemail Notification
2024-02-27 14:12:44,209 - INFO - Processed email: Re: A few Apricot Updates
2024-02-27 14:12:44,221 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:44,231 - INFO - Processed email: Re: A few Apricot Updates
2024-02-27 14:12:44,242 - INFO - Processed email: A few Apricot Updates
2024-02-27 14:12:44,253 - INFO - Processed email: [External Sender][Action Required] New Event: Dane Wagenhoffer - 11:00am Fri, Sep 29, 2023 - Apricot Help Appointment
2024-02-27 14:12:44,262 - INFO - Processed email: Re: Application for Station Place 203 | 95841
2024-02-27 14:12:44,273 - INFO - Processed email: [External Sender]Welcome to Calendly, Dane!
2024-02-27 14:12:44,282 - INFO - Processed email: Important Changes Coming For Your Authentication
2024-02-27 14:12:44,292 - INFO - Processed email: [External Sender]Your app request is on the way!
2024-02-27 14:12:44,304 - INFO - Processed email: New booking: bob for Apricot Help Appointment
2024-02-27 14:12:44,316 - INFO - Processed email: New booking: bob for Apricot Help Appointment
2024-02-27 14:12:44,326 - INFO - Processed email: Narcan - follow up to the training
2024-02-27 14:12:44,342 - INFO - Processed email: Your staff membership details for Training booking calendar
2024-02-27 14:12:44,356 - INFO - Processed email: Canceled booking: for Apricot Initial Training
2024-02-27 14:12:44,372 - INFO - Processed email: Canceled booking: for Apricot Initial Training
2024-02-27 14:12:44,389 - INFO - Processed email: New booking: for Apricot Initial Training
2024-02-27 14:12:44,407 - INFO - Processed email: New booking: for Apricot Initial Training
2024-02-27 14:12:44,423 - INFO - Processed email: Your Training booking calendar has been created
2024-02-27 14:12:44,441 - INFO - Processed email: Re: Occupancy departure
2024-02-27 14:12:44,453 - INFO - Processed email: Isabella Ribucan
2024-02-27 14:12:44,469 - INFO - Processed email: PUD Bill Reduction Credit Application
2024-02-27 14:12:44,480 - INFO - Processed email: RE: background check TLL C104
2024-02-27 14:12:44,491 - INFO - Processed email: Re: background check TLL C104
2024-02-27 14:12:44,502 - INFO - Processed email: RE: Missing Apricot Records
2024-02-27 14:12:44,512 - INFO - Processed email: RE: Missing Apricot Records
2024-02-27 14:12:44,523 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:44,533 - INFO - Processed email: background check TLL C104
2024-02-27 14:12:44,546 - INFO - Processed email: Re: Apricot
2024-02-27 14:12:44,558 - INFO - Processed email: Re: Property Addresses
2024-02-27 14:12:44,568 - INFO - Processed email: Checking in from Denise - McKinney-Vento training
2024-02-27 14:12:44,578 - INFO - Processed email: Re: Apricot
2024-02-27 14:12:44,589 - INFO - Processed email: RE: [External Sender]Bi-Monthly Data Quality Review - September 2023
2024-02-27 14:12:44,601 - INFO - Processed email: RE: [External Sender]Bi-Monthly Data Quality Review - September 2023
2024-02-27 14:12:44,610 - INFO - Processed email: Apricot
2024-02-27 14:12:44,621 - INFO - Processed email: Re: Mitchell's Appointment
2024-02-27 14:12:44,630 - INFO - Processed email: Christine Pfiester shared "Sept 18 2023 Services Intake Board" with you
2024-02-27 14:12:44,642 - INFO - Processed email: FW: [External Sender]Important: Upcoming Apricot Password Update - Sept 28
2024-02-27 14:12:44,657 - INFO - Processed email: Monday Announcements & Agenda
2024-02-27 14:12:44,673 - INFO - Processed email: RE: Background check for TLL #A103: Margaret Taggart
2024-02-27 14:12:44,689 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:44,706 - INFO - Processed email: RE: In Person Meeting MFV
2024-02-27 14:12:44,722 - INFO - Processed email: RE: In Person Meeting MFV
2024-02-27 14:12:44,738 - INFO - Processed email: RE: In Person Meeting MFV
2024-02-27 14:12:44,751 - INFO - Processed email: RE: ASQ
2024-02-27 14:12:44,764 - INFO - Processed email: [External Sender]Contract Information
2024-02-27 14:12:44,777 - INFO - Processed email: Re: SP 313 Peterson background check request
2024-02-27 14:12:44,790 - INFO - Processed email: FW: [External Sender]Bi-Monthly Data Quality Review - September 2023
2024-02-27 14:12:44,799 - INFO - Processed email: Re: [External Sender]RE: Available units and introduction
2024-02-27 14:12:44,810 - INFO - Processed email: Re: [External Sender]RE: Available units and introduction
2024-02-27 14:12:44,820 - INFO - Processed email: referral for TLL E103
2024-02-27 14:12:44,829 - INFO - Processed email: RE: [External Sender]RE: Available units and introduction
2024-02-27 14:12:44,924 - INFO - Processed email: [External Sender]HMIS 80626
2024-02-27 14:12:44,936 - INFO - Processed email: FreePBX Voicemail Notification
2024-02-27 14:12:44,946 - INFO - Processed email: RE: SP 313 Peterson background check request
2024-02-27 14:12:44,957 - INFO - Processed email: Re: [External Sender]Re: Housing Hope
2024-02-27 14:12:44,970 - INFO - Processed email: St,Sa new baby HMIS consent
2024-02-27 14:12:44,980 - INFO - Processed email: Family exiting
2024-02-27 14:12:44,992 - INFO - Processed email: RE: New baby
2024-02-27 14:12:45,002 - INFO - Processed email: RE: Today shelter client
2024-02-27 14:12:45,011 - INFO - Processed email: Today shelter client
2024-02-27 14:12:45,021 - INFO - Processed email: FW: SP 313 Peterson background check request
2024-02-27 14:12:45,032 - INFO - Processed email: RE: SP 313 Peterson background check request
2024-02-27 14:12:45,046 - INFO - Processed email: Fw: [External Sender]Breaking: New Federal Guidance Urges Expediting ARP-HCY Funds
2024-02-27 14:12:45,058 - INFO - Processed email: Re: SP 313 Peterson background check request
2024-02-27 14:12:45,075 - INFO - Processed email: RE: [External Sender]HMIS 95841
2024-02-27 14:12:45,096 - INFO - Processed email: RE: Coordinated Entry
2024-02-27 14:12:45,109 - INFO - Processed email: August TYP and CFS Amplifund Report
2024-02-27 14:12:45,129 - INFO - Processed email: FW: [External Sender]Improving Homelessness Data Collection
2024-02-27 14:12:45,143 - INFO - Processed email: Parking passes at HH Admin
2024-02-27 14:12:45,161 - INFO - Processed email: RE: Need Corrections
2024-02-27 14:12:45,177 - INFO - Processed email: [External Sender]
2024-02-27 14:12:45,193 - INFO - Processed email: [External Sender]Can I enforce the rules if someone is mentally ill?
2024-02-27 14:12:45,207 - INFO - Processed email: FW: move ins & staff list
2024-02-27 14:12:45,217 - INFO - Processed email: RE: Davis and Collins
2024-02-27 14:12:45,229 - INFO - Processed email: Christine Pfiester shared "Sept 11 2023 Services Intake Board " with you
2024-02-27 14:12:45,241 - INFO - Processed email: Professional Learning: Trauma-Informed Outreach and Engagement
2024-02-27 14:12:45,251 - INFO - Processed email: [External Sender]Register now! Coalition Business Administration (CBA) Training
2024-02-27 14:12:45,260 - INFO - Processed email: annual assessment
2024-02-27 14:12:45,272 - INFO - Processed email: RE: K Collins Homeless Certification
2024-02-27 14:12:45,284 - INFO - Processed email: Re: K Collins Homeless Certification
2024-02-27 14:12:45,295 - INFO - Processed email: Davis and Collins
2024-02-27 14:12:45,308 - INFO - Processed email: RE: K Collins Homeless Certification
2024-02-27 14:12:45,322 - INFO - Processed email: Re: background check LHV E202
2024-02-27 14:12:45,332 - INFO - Processed email: RE: [External Sender]HMIS 93449
2024-02-27 14:12:45,345 - INFO - Processed email: K Collins Homeless Certification
2024-02-27 14:12:45,359 - INFO - Processed email: RE: Shelter intake
2024-02-27 14:12:45,371 - INFO - Processed email: RE: Shelter intake
2024-02-27 14:12:45,382 - INFO - Processed email: New Payroll Process Starts in October
2024-02-27 14:12:45,392 - INFO - Processed email: Shelter intake
2024-02-27 14:12:45,404 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:45,415 - INFO - Processed email: RE: background check LHV E202
2024-02-27 14:12:45,429 - INFO - Processed email: FW: background check LHV E202
2024-02-27 14:12:45,439 - INFO - Processed email: RE: background check LHV E202
2024-02-27 14:12:45,447 - INFO - Processed email: Weekly Team Member Shout Outs!
2024-02-27 14:12:45,457 - INFO - Processed email: background check LHV E202
2024-02-27 14:12:45,466 - INFO - Processed email: RE: [External Sender]HMIS 73526
2024-02-27 14:12:45,475 - INFO - Processed email: RE: [External Sender]HMIS 95347
2024-02-27 14:12:45,486 - INFO - Processed email: RE: Application for Lincoln Hill Village E202
2024-02-27 14:12:45,496 - INFO - Processed email: RE: Annual Assessments for August
2024-02-27 14:12:45,507 - INFO - Processed email: Re: Application for Lincoln Hill Village E202
2024-02-27 14:12:45,519 - INFO - Processed email: Re: Annual Assessment for September
2024-02-27 14:12:45,530 - INFO - Processed email: Fw: [External Sender]FW: Resources - Edmonds College
2024-02-27 14:12:45,541 - INFO - Processed email: RE: Annual Assessments for August
2024-02-27 14:12:45,551 - INFO - Processed email: RE: Annual Assessments for August
2024-02-27 14:12:45,559 - INFO - Processed email: [External Sender]Update on LDRF Funding
2024-02-27 14:12:45,574 - INFO - Processed email: SP 313 Peterson background check request
2024-02-27 14:12:45,586 - INFO - Processed email: [External Sender]Re: HMIS 92937
2024-02-27 14:12:45,598 - INFO - Processed email: [External Sender]HMIS 73526
2024-02-27 14:12:45,608 - INFO - Processed email: [External Sender]HMIS 95347
2024-02-27 14:12:45,675 - INFO - Processed email: RE: [External Sender]RE: HMIS 52833
2024-02-27 14:12:45,769 - INFO - Processed email: RE: [External Sender]RE: HMIS 52833
2024-02-27 14:12:45,787 - INFO - Processed email: RE: [External Sender]RE: HMIS 52833
2024-02-27 14:12:45,803 - INFO - Processed email: RE: [External Sender]HMIS 91298
2024-02-27 14:12:45,821 - INFO - Processed email: RE: [External Sender]I am sharing 'Pregnant and Parentiing Referral Form- AnSe' with you
2024-02-27 14:12:45,835 - INFO - Processed email: Homeless Certification Kristen Cordes
2024-02-27 14:12:45,847 - INFO - Processed email: [External Sender]HMIS 86727
2024-02-27 14:12:45,859 - INFO - Processed email: [External Sender]HMIS 95841
2024-02-27 14:12:45,870 - INFO - Processed email: RE: Move ins
2024-02-27 14:12:45,878 - INFO - Processed email: Move ins
2024-02-27 14:12:45,889 - INFO - Processed email: RE: Demographics Collection Form
2024-02-27 14:12:45,898 - INFO - Processed email: FW: enrollment and rosters
2024-02-27 14:12:45,910 - INFO - Processed email: FW: Enrollment and current rosters
2024-02-27 14:12:45,922 - INFO - Processed email: Christine Pfiester shared "Sept 5 2023 Services Intake Board - Copy" with you
2024-02-27 14:12:45,942 - INFO - Processed email: [External Sender]Re: Housing Hope
2024-02-27 14:12:45,954 - INFO - Processed email: [External Sender]Re: Pledge Letter
2024-02-27 14:12:45,963 - INFO - Processed email: RE: [External Sender]RE: HMIS 52833
2024-02-27 14:12:45,975 - INFO - Processed email: Re: Kirsondra Martin
2024-02-27 14:12:45,986 - INFO - Processed email: RE: [External Sender]RE: HMIS 52833
2024-02-27 14:12:45,995 - INFO - Processed email: [External Sender]HMIS 52833
2024-02-27 14:12:46,007 - INFO - Processed email: Valdez
2024-02-27 14:12:46,018 - INFO - Processed email: [External Sender]HMIS 74645
2024-02-27 14:12:46,029 - INFO - Processed email: [External Sender]HMIS 92185
2024-02-27 14:12:46,040 - INFO - Processed email: [External Sender]RE: move in 88598
2024-02-27 14:12:46,050 - INFO - Processed email: move in 88598
2024-02-27 14:12:46,060 - INFO - Processed email: FW: Demographics of THCDC kids?
2024-02-27 14:12:46,071 - INFO - Processed email: FW: WCV 1 - Stephens gave Notice
2024-02-27 14:12:46,084 - INFO - Processed email: FW: HC II - 5914A Valdez - NTV
2024-02-27 14:12:46,092 - INFO - Processed email: entries & withdrawals
2024-02-27 14:12:46,102 - INFO - Processed email: CFS clients & hours
2024-02-27 14:12:46,112 - INFO - Processed email: RE: Apricot feature request
2024-02-27 14:12:46,124 - INFO - Processed email: RE: Apricot feature request
2024-02-27 14:12:46,136 - INFO - Processed email: RE: RESOLVED: Remote Desktop and applications outage
2024-02-27 14:12:46,145 - INFO - Processed email: FreePBX Voicemail Notification
2024-02-27 14:12:46,156 - INFO - Processed email: FW: Instructions on phone/VM
2024-02-27 14:12:46,167 - INFO - Processed email: April 2023 Phone Lists & Org Charts
2024-02-27 14:12:46,178 - INFO - Processed email: RE: [Ticket #5410] Ram
2024-02-27 14:12:46,195 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:46,210 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:46,225 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:46,239 - INFO - Processed email: [External Sender]Apricot Administrator Boot Camp Confirmation
2024-02-27 14:12:46,256 - INFO - Processed email: [External Sender]Apricot Administrator Boot Camp Confirmation
2024-02-27 14:12:46,275 - INFO - Processed email: [External Sender]Apricot Administrator Boot Camp Confirmation
2024-02-27 14:12:46,294 - INFO - Processed email: [External Sender]Apricot Administrator Boot Camp Confirmation
2024-02-27 14:12:46,310 - INFO - Processed email: [External Sender]REGISTERED TO SESSION:Apricot Administrator Boot Camp
2024-02-27 14:12:46,324 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:46,335 - INFO - Processed email: Re: Please Delete
2024-02-27 14:12:46,347 - INFO - Processed email: [Ticket #5410] Ram
2024-02-27 14:12:46,358 - INFO - Processed email: Please Delete
2024-02-27 14:12:46,370 - INFO - Processed email: [Ticket #5410] Ram
2024-02-27 14:12:46,379 - INFO - Processed email: [External Sender]Book a meeting without switching tabs!
2024-02-27 14:12:46,391 - INFO - Processed email: Re: [External Sender]Deposit
2024-02-27 14:12:46,404 - INFO - Processed email: RE: computer stuff
2024-02-27 14:12:46,418 - INFO - Processed email: RE: [External Sender]Re: HMIS 91298
2024-02-27 14:12:46,428 - INFO - Processed email: RE: [External Sender]Re: HMIS 91298
2024-02-27 14:12:46,445 - INFO - Processed email: [External Sender]Re: HMIS 91298
2024-02-27 14:12:46,462 - INFO - Processed email: computer stuff
2024-02-27 14:12:46,479 - INFO - Processed email: The Winner is.......
2024-02-27 14:12:46,490 - INFO - Processed email: Re: Message from "HH-Services-Ricoh"
2024-02-27 14:12:46,502 - INFO - Processed email: FW: [EXTERNAL EMAIL] RE: [External Sender]RE: HMIS 92238
2024-02-27 14:12:46,511 - INFO - Processed email: RE: [External Sender]HMIS 80626
2024-02-27 14:12:46,524 - INFO - Processed email: Apricot New shelter families
2024-02-27 14:12:46,536 - INFO - Processed email: RE: random ramblings
2024-02-27 14:12:46,547 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 - New Note
2024-02-27 14:12:46,558 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 - New Note
2024-02-27 14:12:46,569 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 - New Note
2024-02-27 14:12:46,578 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 - New Note
2024-02-27 14:12:46,589 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 - New Note
2024-02-27 14:12:46,601 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 - New Note
2024-02-27 14:12:46,613 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21749 has been submitted
2024-02-27 14:12:46,625 - INFO - Processed email: Fwd: [External Sender]Engaging parents of English learners
2024-02-27 14:12:46,637 - INFO - Processed email: Automatic reply: New business card draft
2024-02-27 14:12:46,648 - INFO - Processed email: [External Sender]What's the easiest way to schedule a meeting?
2024-02-27 14:12:46,660 - INFO - Processed email: FW: Application for Twin Lakes E103 93938
2024-02-27 14:12:46,671 - INFO - Processed email: RE: Message from "HH-Services-Ricoh"
2024-02-27 14:12:46,680 - INFO - Processed email: FW: Message from "HH-Services-Ricoh"
2024-02-27 14:12:46,694 - INFO - Processed email: Re: New Email
2024-02-27 14:12:46,725 - INFO - Processed email: RE: Hidden Rules Among Classes
2024-02-27 14:12:46,739 - INFO - Processed email: [External Sender]Say goodbye to summer. You've got plans
2024-02-27 14:12:46,751 - INFO - Processed email: [External Sender]Bonterra update: Website changes are coming
2024-02-27 14:12:46,763 - INFO - Processed email: New business card draft
2024-02-27 14:12:46,776 - INFO - Processed email: HW server maintenance tonight
2024-02-27 14:12:46,789 - INFO - Processed email: RE: Contact Info
2024-02-27 14:12:46,802 - INFO - Processed email: Re: Services Intake Meeting
2024-02-27 14:12:46,818 - INFO - Processed email: Automatic reply: A few Apricot Updates
2024-02-27 14:12:46,829 - INFO - Processed email: Re: Application for Station Place 203 | 95841
2024-02-27 14:12:46,843 - INFO - Processed email: Hold off on September Timesheets
2024-02-27 14:12:46,856 - INFO - Processed email: Re: Occupancy departure
2024-02-27 14:12:46,865 - INFO - Processed email: Re: [External Sender]FW: 9.18.23 HNN Unit Availability Reports
2024-02-27 14:12:46,877 - INFO - Processed email: Re: [External Sender]FW: 9.18.23 HNN Unit Availability Reports
2024-02-27 14:12:46,891 - INFO - Processed email: Fwd: [External Sender]FW: Community YouthRAP Meeting - Please share w/LPA
2024-02-27 14:12:46,903 - INFO - Processed email: Fw: [External Sender]FW: 9.18.23 HNN Unit Availability Reports
2024-02-27 14:12:46,912 - INFO - Processed email: Re: Quarterly fun pic
2024-02-27 14:12:46,926 - INFO - Processed email: RE: Missing Apricot Records
2024-02-27 14:12:46,940 - INFO - Processed email: [External Sender]The hardest day of my life was December 20, 1998.
2024-02-27 14:12:46,956 - INFO - Processed email: FW: Missing Apricot Records
2024-02-27 14:12:46,969 - INFO - Processed email: RE: Missing Apricot Records
2024-02-27 14:12:46,982 - INFO - Processed email: RE: Property Addresses
2024-02-27 14:12:46,994 - INFO - Processed email: Re: Property Addresses
2024-02-27 14:12:47,007 - INFO - Processed email: Property Addresses
2024-02-27 14:12:47,018 - INFO - Processed email: [Ticket #5312] Approved: [Ticket #5115] Zoom
2024-02-27 14:12:47,031 - INFO - Processed email: RE: Missing Apricot Records
2024-02-27 14:12:47,043 - INFO - Processed email: [External Sender]Reminder: "Sept 11 2023 Services Intake Board " has been shared with you
2024-02-27 14:12:47,055 - INFO - Processed email: [External Sender]
2024-02-27 14:12:47,069 - INFO - Processed email: FreePBX Voicemail Notification
2024-02-27 14:12:47,085 - INFO - Processed email: Re: Intake BW 1029B
2024-02-27 14:12:47,107 - INFO - Processed email: Your digest email
2024-02-27 14:12:47,125 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21733 has been submitted
2024-02-27 14:12:47,140 - INFO - Processed email: RE: In Person Meeting MFV
2024-02-27 14:12:47,153 - INFO - Processed email: RE: In Person Meeting MFV
2024-02-27 14:12:47,166 - INFO - Processed email: Weekly Team Member Shout Outs!!
2024-02-27 14:12:47,181 - INFO - Processed email: In Person Meeting MFV
2024-02-27 14:12:47,193 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21616 has been verified
2024-02-27 14:12:47,206 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21635 has been verified
2024-02-27 14:12:47,216 - INFO - Processed email: RE: Additional information
2024-02-27 14:12:47,230 - INFO - Processed email: [External Sender]Keep crushing your goals this September \U0001f342
2024-02-27 14:12:47,243 - INFO - Processed email: Re: Missing Apricot Records
2024-02-27 14:12:47,255 - INFO - Processed email: [External Sender]Important Message from Housing Hope
2024-02-27 14:12:47,269 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:47,283 - INFO - Processed email: [External Sender]Important Message from Housing Hope
2024-02-27 14:12:47,295 - INFO - Processed email: [Ticket #5312] Approved: [Ticket #5115] Zoom
2024-02-27 14:12:47,310 - INFO - Processed email: Approved: [Ticket #5115] Zoom
2024-02-27 14:12:47,326 - INFO - Processed email: FW: SP 313 Peterson background check request
2024-02-27 14:12:47,344 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:47,358 - INFO - Processed email: Re: Application for Twin Lakes Landing A102
2024-02-27 14:12:47,371 - INFO - Processed email: [External Sender]We've got events. You’ve got plans
2024-02-27 14:12:47,381 - INFO - Processed email: YOU'RE INVITED! | HopeWorks Trainee Graduation - Sept. 21 @ 3p
2024-02-27 14:12:47,391 - INFO - Processed email: [Ticket #5115] Zoom
2024-02-27 14:12:47,402 - INFO - Processed email: Re: [External Sender]Apricot Notification
2024-02-27 14:12:47,411 - INFO - Processed email: RE: Jeff Sam & HUD Units
2024-02-27 14:12:47,422 - INFO - Processed email: Re: Jeff Sam & HUD Units
2024-02-27 14:12:47,431 - INFO - Processed email: RE: Kelsey Martin Homeless cert
2024-02-27 14:12:47,442 - INFO - Processed email: Re: Kelsey Martin Homeless cert
2024-02-27 14:12:47,454 - INFO - Processed email: FW: Kelsey Martin Homeless cert
2024-02-27 14:12:47,462 - INFO - Processed email: Kelsey Martin Homeless cert
2024-02-27 14:12:47,474 - INFO - Processed email: RE: St,Sa new baby HMIS consent
2024-02-27 14:12:47,485 - INFO - Processed email: RE: August TYP and CFS Amplifund Report
2024-02-27 14:12:47,494 - INFO - Processed email: FW: Jeff Sam & HUD Units
2024-02-27 14:12:47,508 - INFO - Processed email: Re: Kiddos in Band Resources
2024-02-27 14:12:47,519 - INFO - Processed email: Re: Kiddos in Band Resources
2024-02-27 14:12:47,530 - INFO - Processed email: Kiddos in Band Resources
2024-02-27 14:12:47,542 - INFO - Processed email: Your password will expire in 14 days
2024-02-27 14:12:47,554 - INFO - Processed email: Re: CFS clients & hours
2024-02-27 14:12:47,562 - INFO - Processed email: Re: SP 313 Peterson background check request
2024-02-27 14:12:47,574 - INFO - Processed email: Fw: SP 313 Peterson background check request
2024-02-27 14:12:47,587 - INFO - Processed email: FW: NTV- CB#504 Candace Adams
2024-02-27 14:12:47,597 - INFO - Processed email: [External Sender]HMIS 93938
2024-02-27 14:12:47,610 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:47,623 - INFO - Processed email: Fw: [External Sender]TONIGHT! Pathways to Recovery: What Are The Right Steps For People With Substance Use Disorder?
2024-02-27 14:12:47,636 - INFO - Processed email: Re: SP 313 Peterson background check request
2024-02-27 14:12:47,646 - INFO - Processed email: RE: [External Sender]HMIS 95841
2024-02-27 14:12:47,658 - INFO - Processed email: Re: CFS clients & hours
2024-02-27 14:12:47,669 - INFO - Processed email: Re: New baby
2024-02-27 14:12:47,679 - INFO - Processed email: Re: New baby
2024-02-27 14:12:47,694 - INFO - Processed email: New baby
2024-02-27 14:12:47,706 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:47,722 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:47,733 - INFO - Processed email: Thank you!
2024-02-27 14:12:47,746 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:47,759 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:47,773 - INFO - Processed email: Coordinated Entry
2024-02-27 14:12:47,786 - INFO - Processed email: Occupancy departure
2024-02-27 14:12:47,797 - INFO - Processed email: [External Sender]Reminder: your meeting Bonterra Check-in with Housing Hope is about to start
2024-02-27 14:12:47,811 - INFO - Processed email: TOMORROW's ALL TEAM MEETING: September 13
2024-02-27 14:12:47,827 - INFO - Processed email: RE: Apricot for Sam
2024-02-27 14:12:47,840 - INFO - Processed email: RE: [External Sender]HMIS 95841
2024-02-27 14:12:47,853 - INFO - Processed email: TOMORROW's ALL TEAM MEETING: September 13
2024-02-27 14:12:47,865 - INFO - Processed email: Apricot for Sam
2024-02-27 14:12:47,878 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:47,891 - INFO - Processed email: Re: Any available units?
2024-02-27 14:12:47,903 - INFO - Processed email: RE: Any available units?
2024-02-27 14:12:47,913 - INFO - Processed email: RE: Any available units?
2024-02-27 14:12:47,926 - INFO - Processed email: [External Sender]Reminder: "Sept 5 2023 Services Intake Board - Copy" has been shared with you
2024-02-27 14:12:47,940 - INFO - Processed email: Any available units?
2024-02-27 14:12:47,950 - INFO - Processed email: RE: Can you come meet us over here at HWSS to talk apricot reports?
2024-02-27 14:12:47,962 - INFO - Processed email: Re: Can you come meet us over here at HWSS to talk apricot reports?
2024-02-27 14:12:47,974 - INFO - Processed email: Re: Davis and Collins
2024-02-27 14:12:47,990 - INFO - Processed email: RE: Can you come meet us over here at HWSS to talk apricot reports?
2024-02-27 14:12:48,001 - INFO - Processed email: Can you come meet us over here at HWSS to talk apricot reports?
2024-02-27 14:12:48,013 - INFO - Processed email: RE: [External Sender]Re: Shelter Client
2024-02-27 14:12:48,027 - INFO - Processed email: Re: [External Sender]Re: Shelter Client
2024-02-27 14:12:48,040 - INFO - Processed email: RE: [External Sender]Re: Shelter Client
2024-02-27 14:12:48,056 - INFO - Processed email: Services Meeting Follow-up
2024-02-27 14:12:48,070 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21701 has been verified
2024-02-27 14:12:48,092 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21705 has been verified
2024-02-27 14:12:48,111 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:48,127 - INFO - Processed email: Reminder - Narcan Training 9/13 @ 4:30pm
2024-02-27 14:12:48,140 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:48,155 - INFO - Processed email: RE: [External Sender]SFP10-14 at Willis Tucker Park
2024-02-27 14:12:48,169 - INFO - Processed email: RE: [External Sender]HMIS 93449
2024-02-27 14:12:48,180 - INFO - Processed email: Fwd: [External Sender]SFP10-14 at Willis Tucker Park
2024-02-27 14:12:48,193 - INFO - Processed email: Creating Hope & Resilience - Community Conversation on Suicide Prevention
2024-02-27 14:12:48,205 - INFO - Processed email: SnoCo Regional Job & Resource Fair with Job Fair Readiness Workshop flyer
2024-02-27 14:12:48,218 - INFO - Processed email: Labor Works Job Fair at Carnegie Flyer
2024-02-27 14:12:48,230 - INFO - Processed email: RE: New Attachments Form
2024-02-27 14:12:48,243 - INFO - Processed email: Substance A103
2024-02-27 14:12:48,256 - INFO - Processed email: Homeless verification
2024-02-27 14:12:48,269 - INFO - Processed email: [External Sender]Chris sent a message
2024-02-27 14:12:48,279 - INFO - Processed email: [External Sender]Shake up your weekend. You’ve got plans
2024-02-27 14:12:48,293 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21705 has been submitted
2024-02-27 14:12:48,307 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:48,318 - INFO - Processed email: RE: T. Brockway
2024-02-27 14:12:48,329 - INFO - Processed email: Fw: [External Sender]YouthRAP: New Year, New Date
2024-02-27 14:12:48,342 - INFO - Processed email: T. Brockway
2024-02-27 14:12:48,366 - INFO - Processed email: Anyone knows of auto mechanic assistance available pleaes
2024-02-27 14:12:48,395 - INFO - Processed email: [External Sender][ClientTrack Issues Tracking] Issue SnocoHSD-21701 has been submitted
2024-02-27 14:12:48,413 - INFO - Processed email: Re: FY23 College of Hope Data
2024-02-27 14:12:48,427 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:48,441 - INFO - Processed email: FY23 College of Hope Data
2024-02-27 14:12:48,454 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:48,484 - INFO - Processed email: shelter intake
2024-02-27 14:12:48,516 - INFO - Processed email: [External Sender]Case closure notification Case 00992097: Wanting to only pull most current evaluation date ref:_00Dj01qbqs._5005d26v9nT:ref
2024-02-27 14:12:48,545 - INFO - Processed email: Re: Aimee Peterson
2024-02-27 14:12:48,560 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:48,575 - INFO - Processed email: [External Sender]Karen sent a message
2024-02-27 14:12:48,586 - INFO - Processed email: RE: Resources
2024-02-27 14:12:48,607 - INFO - Processed email: Resources
2024-02-27 14:12:48,622 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:48,635 - INFO - Processed email: RE: Client data tracking
2024-02-27 14:12:48,647 - INFO - Processed email: Re: Client data tracking
2024-02-27 14:12:48,661 - INFO - Processed email: FW: Client data tracking
2024-02-27 14:12:48,674 - INFO - Processed email: TYP
2024-02-27 14:12:48,686 - INFO - Processed email: RE: Move ins
2024-02-27 14:12:48,698 - INFO - Processed email: Fw: [External Sender]Upcoming Trauma & Resilience Classes
2024-02-27 14:12:48,713 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:48,725 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:48,735 - INFO - Processed email: RE: Back to school resources
2024-02-27 14:12:48,750 - INFO - Processed email: RE: Jessica Valdez HHX 5914A
2024-02-27 14:12:48,761 - INFO - Processed email: Jessica Valdez HHX 5914A
2024-02-27 14:12:48,774 - INFO - Processed email: [External Sender]RE: Opening at New Century Village C102
2024-02-27 14:12:48,785 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:48,796 - INFO - Processed email: RE: Apricot
2024-02-27 14:12:48,808 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:48,821 - INFO - Processed email: FW: hpmeless certification
2024-02-27 14:12:48,834 - INFO - Processed email: RE: What percentage of our shelter guests go direct into housing?
2024-02-27 14:12:48,846 - INFO - Processed email: RE: Annual Assessment for Jericho Matulka
2024-02-27 14:12:48,856 - INFO - Processed email: RE: Annual Assessment for Jericho Matulka
2024-02-27 14:12:48,867 - INFO - Processed email: RE: What percentage of our shelter guests go direct into housing?
2024-02-27 14:12:48,878 - INFO - Processed email: Fw: CFS Tracking Log August 2023
2024-02-27 14:12:48,890 - INFO - Processed email: Annual Assessment for Jericho Matulka
2024-02-27 14:12:48,900 - INFO - Processed email: SPREAD THE WORD: Kindred Kitchen Open Interviews
2024-02-27 14:12:48,912 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:48,926 - INFO - Processed email: HopeWorks data
2024-02-27 14:12:48,938 - INFO - Processed email: RE: Demographics Collection Form
2024-02-27 14:12:48,947 - INFO - Processed email: RE: What percentage of our shelter guests go direct into housing?
2024-02-27 14:12:48,961 - INFO - Processed email: RE: What percentage of our shelter guests go direct into housing?
2024-02-27 14:12:48,976 - INFO - Processed email: RE: Scheduling an Intake
2024-02-27 14:12:48,990 - INFO - Processed email: RE: What percentage of our shelter guests go direct into housing?
2024-02-27 14:12:49,005 - INFO - Processed email: [External Sender]Christine Pfiester moved the card Services Intake Board to Done on Data Projects
2024-02-27 14:12:49,018 - INFO - Processed email: safety and security updates
2024-02-27 14:12:49,035 - INFO - Processed email: RE: What percentage of our shelter guests go direct into housing?
2024-02-27 14:12:49,050 - INFO - Processed email: Fw: [External Sender]Upcoming Trauma & Resilience Classes
2024-02-27 14:12:49,062 - INFO - Processed email: [External Sender]“An addict will do anything to not be dope sick.”
2024-02-27 14:12:49,075 - INFO - Processed email: [External Sender]Resolution confirmation required on Case 00992097: Wanting to only pull most current evaluation date ref:_00Dj01qbqs._5005d26v9nT:ref
2024-02-27 14:12:49,090 - INFO - Processed email: [External Sender]There's still time to register for How CDFIs are faring – Insights from the Fed's 2023 CDFI Survey
2024-02-27 14:12:49,108 - INFO - Processed email: Your digest email
2024-02-27 14:12:49,121 - INFO - Processed email: FW: Background check for TLL #A102: Margaret Taggart
2024-02-27 14:12:49,137 - INFO - Processed email: FW: [Ticket #5115] Zoom
2024-02-27 14:12:49,156 - INFO - Processed email: Clarification & Needed Documents
2024-02-27 14:12:49,168 - INFO - Processed email: [External Sender]Reminder: "August 28 2023 Services Intake Board " has been shared with you
2024-02-27 14:12:49,180 - INFO - Processed email: Fwd: [External Sender]FW: Snohomish County Regional Job & Resource Fair with Job Fair Readiness Workshop flyer
2024-02-27 14:12:49,192 - INFO - Processed email: Fwd: [External Sender]Replacing Stolen Food Benefits
2024-02-27 14:12:49,207 - INFO - Processed email: Fw: What percentage of our shelter guests go direct into housing?
2024-02-27 14:12:49,219 - INFO - Processed email: Re: Annual Assessment for September
2024-02-27 14:12:49,230 - INFO - Processed email: Weekly Shout Outs!!
2024-02-27 14:12:49,244 - INFO - Processed email: [External Sender]Save time on tedious tasks
2024-02-27 14:12:49,260 - INFO - Processed email: Re: Annual Assessment for September
2024-02-27 14:12:49,274 - INFO - Processed email: [External Sender]RE: Status of Check
2024-02-27 14:12:49,286 - INFO - Processed email: Annual Assessment for September
2024-02-27 14:12:49,299 - INFO - Processed email: RE: Status of Check
2024-02-27 14:12:49,311 - INFO - Processed email: FW: Next Zoom Sept 13: PATHWAYS TO RECOVERY: What Are The Right Steps For People With Substance Use Disorder?
2024-02-27 14:12:49,325 - INFO - Processed email: RE: Status of Check
2024-02-27 14:12:49,339 - INFO - Processed email: Two (2) Grey Tables in HH Admin Conference Room
2024-02-27 14:12:49,352 - INFO - Processed email: RE: Demographics of THCDC kids?
2024-02-27 14:12:49,373 - INFO - Processed email: [External Sender]RE: HMIS 52833
2024-02-27 14:12:49,387 - INFO - Processed email: RE: Scheduling an Intake
2024-02-27 14:12:49,402 - INFO - Processed email: RE: Apricot
2024-02-27 14:12:49,417 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:49,430 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:49,443 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:49,457 - INFO - Processed email: [External Sender]Reset Password
2024-02-27 14:12:49,474 - INFO - Processed email: [External Sender]RE: HMIS 74645
2024-02-27 14:12:49,487 - INFO - Processed email: FW: [External Sender]HMIS 93835
2024-02-27 14:12:49,497 - INFO - Processed email: Fw: [External Sender]Labor Works Job Fair at Carnegie Flyer
2024-02-27 14:12:49,512 - INFO - Processed email: Fw: [External Sender]CRC Monthly Calendar: September 2023
2024-02-27 14:12:49,527 - INFO - Processed email: RE: Application for Twin Lakes Landing F203: Alyx Hardeland
2024-02-27 14:12:49,539 - INFO - Processed email: FW: Application for Twin Lakes Landing F203: Alyx Hardeland
2024-02-27 14:12:49,552 - INFO - Processed email: Opening at New Century Village C102
2024-02-27 14:12:49,567 - INFO - Processed email: Re: HOT OF THE PRESS: Dwellings Newsletter | Summer 2023
2024-02-27 14:12:49,586 - INFO - Processed email: HOT OF THE PRESS: Dwellings Newsletter | Summer 2023
2024-02-27 14:12:49,602 - INFO - Processed email: RE: Average days between enrollment and move in since 2017
2024-02-27 14:12:49,618 - INFO - Processed email: RE: Apricot
2024-02-27 14:12:49,633 - INFO - Processed email: Apricot
2024-02-27 14:12:49,647 - INFO - Processed email: Automatic reply: Demographics of THCDC kids?
2024-02-27 14:12:49,663 - INFO - Processed email: RE: entries & withdrawals
2024-02-27 14:12:49,680 - INFO - Processed email: RE: Scheduling an Intake
2024-02-27 14:12:49,717 - INFO - Processed email: Health & Wellness
2024-02-27 14:12:49,731 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:49,744 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:49,760 - INFO - Processed email: [External Sender]Resolution confirmation requested on Case 00992097: Wanting to only pull most current evaluation date ref:_00Dj01qbqs._5005d26v9nT:ref
2024-02-27 14:12:49,774 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:49,789 - INFO - Processed email: RE: Services Intake Board
2024-02-27 14:12:49,807 - INFO - Processed email: Services Intake Board
2024-02-27 14:12:49,821 - INFO - Processed email: [External Sender]Your Tickets for Sam Quinones: A Community Dialog about Fentanyl, Meth and the Opioid Crisis
2024-02-27 14:12:49,835 - INFO - Processed email: Fw: [External Sender]Community Conversation Event on September 28th
2024-02-27 14:12:49,851 - INFO - Processed email: Men's Suits-donation
2024-02-27 14:12:49,867 - INFO - Processed email: RE: Scheduling an Intake
2024-02-27 14:12:49,881 - INFO - Processed email: RE: Scheduling an Intake
2024-02-27 14:12:49,892 - INFO - Processed email: RE: Scheduling an Intake
2024-02-27 14:12:49,907 - INFO - Processed email: RE: Low Numbers - Narcan training
2024-02-27 14:12:49,918 - INFO - Processed email: RE: Kendra Fanning
2024-02-27 14:12:49,930 - INFO - Processed email: Narcan training
2024-02-27 14:12:49,943 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:49,956 - INFO - Processed email: Re: Jan Chelgren
2024-02-27 14:12:49,971 - INFO - Processed email: Re: Jan Chelgren
2024-02-27 14:12:49,985 - INFO - Processed email: RE: [External Sender]TODAY: Virtual Zoo Access for CAP Recipients
2024-02-27 14:12:49,996 - INFO - Processed email: RE: [External Sender]TODAY: Virtual Zoo Access for CAP Recipients
2024-02-27 14:12:50,010 - INFO - Processed email: Re: [External Sender]TODAY: Virtual Zoo Access for CAP Recipients
2024-02-27 14:12:50,025 - INFO - Processed email: FW: [External Sender]TODAY: Virtual Zoo Access for CAP Recipients
2024-02-27 14:12:50,037 - INFO - Processed email: IMPORTANT - Fire alarm testing today at HH Campus
2024-02-27 14:12:50,049 - INFO - Processed email: Timesheet change
2024-02-27 14:12:50,059 - INFO - Processed email: RE: Kendra Fanning
2024-02-27 14:12:50,079 - INFO - Processed email: [External Sender]Support Case 00992097: Wanting to only pull most current evaluation date [ ref:_00Dj01qbqs._5005d26v9nT:ref ]
2024-02-27 14:12:50,091 - INFO - Processed email: Re: Data request, please
2024-02-27 14:12:50,101 - INFO - Processed email: FYI - file server maintenance
2024-02-27 14:12:50,111 - INFO - Processed email: RE: [External Sender]HMIS 92964
2024-02-27 14:12:50,124 - INFO - Processed email: RE: [External Sender]HMIS 92964
2024-02-27 14:12:50,134 - INFO - Processed email: RE: [External Sender]HMIS 92964
2024-02-27 14:12:50,146 - INFO - Processed email: RE: [External Sender]HMIS 92964
2024-02-27 14:12:50,159 - INFO - Processed email: RE: Data request, please
2024-02-27 14:12:50,170 - INFO - Processed email: RE: [External Sender]HMIS 92964
2024-02-27 14:12:50,183 - INFO - Processed email: Re: August Annual Assessments
2024-02-27 14:12:50,193 - INFO - Processed email: FW: Joint agency business cards
2024-02-27 14:12:50,205 - INFO - Processed email: RE: [External Sender]HMIS 91298
2024-02-27 14:12:50,213 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:50,225 - INFO - Processed email: FREE Bumbershoot Tickets-REPLY by Thursday!
2024-02-27 14:12:50,239 - INFO - Processed email: RE: Malia Gomez
2024-02-27 14:12:50,250 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:50,261 - INFO - Processed email: RE: Apricot
2024-02-27 14:12:50,273 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:50,285 - INFO - Processed email: RE: Apricot
2024-02-27 14:12:50,299 - INFO - Processed email: Re: Malia Gomez
2024-02-27 14:12:50,308 - INFO - Processed email: Apricot
2024-02-27 14:12:50,319 - INFO - Processed email: RE: Paulk Household
2024-02-27 14:12:50,330 - INFO - Processed email: Malia Gomez
2024-02-27 14:12:50,342 - INFO - Processed email: RE: Application for Twin Lakes Landing F203: Alyx Hardeland
2024-02-27 14:12:50,353 - INFO - Processed email: RE: Application for Twin Lakes Landing F203: Alyx Hardeland
2024-02-27 14:12:50,364 - INFO - Processed email: New Policy-
2024-02-27 14:12:50,377 - INFO - Processed email: [External Sender]Can withdrawal from heroin kill you?
2024-02-27 14:12:50,388 - INFO - Processed email: RE: Application for Twin Lakes Landing F203: Alyx Hardeland
2024-02-27 14:12:50,398 - INFO - Processed email: FW: Data request, please
2024-02-27 14:12:50,411 - INFO - Processed email: Re: August Annual Assessments
2024-02-27 14:12:50,421 - INFO - Processed email: Paulk Household
2024-02-27 14:12:50,431 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:50,447 - INFO - Processed email: RE: [External Sender]Apricot Notification
2024-02-27 14:12:50,460 - INFO - Processed email: Re: Application for Twin Lakes Landing F203: Alyx Hardeland
2024-02-27 14:12:50,474 - INFO - Processed email: [External Sender]Reminder: "August 21 2023 Services Intake Board " has been shared with you
2024-02-27 14:12:50,486 - INFO - Processed email: [External Sender]2 new notifications on Data Projects since 8:52 PM (August 28, 2023)
2024-02-27 14:12:50,495 - INFO - Processed email: Re: Application for Twin Lakes Landing F203: Alyx Hardeland
2024-02-27 14:12:50,506 - INFO - Processed email: Copy Of TYP August 2023
2024-02-27 14:12:50,517 - INFO - Processed email: alyx
2024-02-27 14:12:50,530 - INFO - Processed email: Christine Pfiester shared "August 28 2023 Services Intake Board " with you
2024-02-27 14:12:50,541 - INFO - Processed email: Message from "HH-Services-Ricoh"
2024-02-27 14:12:50,554 - INFO - Processed email: [External Sender]Support Case 00992097: Wanting to only pull most current evaluation date [ ref:_00Dj01qbqs._5005d26v9nT:ref ]
2024-02-27 14:12:50,567 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:50,577 - INFO - Processed email: [External Sender]HMIS 93835
2024-02-27 14:12:50,587 - INFO - Processed email: Compensation Philosophy
2024-02-27 14:12:50,596 - INFO - Processed email: Approved Move IN
2024-02-27 14:12:50,606 - INFO - Processed email: Whiteside Final -Request for documentation
2024-02-27 14:12:50,616 - INFO - Processed email: Reschedule Monday's visit
2024-02-27 14:12:50,627 - INFO - Processed email: Re: [External Sender]Re: Status of Employment
2024-02-27 14:12:50,638 - INFO - Processed email: [External Sender] A plan on how to fix "Staff Assigned" on Apricot on Data Projects is due in 2 days
2024-02-27 14:12:50,648 - INFO - Processed email: [External Sender]Re: Status of Employment
2024-02-27 14:12:50,663 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:50,678 - INFO - Processed email: Re: Exit
2024-02-27 14:12:50,688 - INFO - Processed email: Fw: [External Sender]Dolly Parton's Imagination Library is Here! \U0001f4da
2024-02-27 14:12:50,697 - INFO - Processed email: [External Sender]Apricot Notification
2024-02-27 14:12:50,707 - INFO - Processed email: [External Sender]EXIT ALERT
2024-02-27 14:12:50,716 - INFO - Processed email: TEAM MEMBER SHOUT OUTS: WEEK OF AUGUST 21, 2023
2024-02-27 14:12:50,727 - INFO - Processed email: REMINDER: Trauma Informed Care Listening Session - Monday, August 28