File tree 2 files changed +33
-1
lines changed
2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,16 @@ def by_id(self, id: str | UUID) -> EntryRecipient | None:
89
89
return self .query ().filter (EntryRecipient .id == id ).first ()
90
90
return None
91
91
92
+ def by_address (
93
+ self ,
94
+ address : str ,
95
+ ) -> EntryRecipient | None :
96
+
97
+ query = self .query ()
98
+ query = query .filter (EntryRecipient .address == address )
99
+
100
+ return query .first ()
101
+
92
102
def add (
93
103
self ,
94
104
address : str ,
Original file line number Diff line number Diff line change @@ -590,7 +590,7 @@ def process_obj(self, obj: DirectoryEntry) -> None:
590
590
return DirectoryEntryForm
591
591
592
592
593
- class EntryRecipient (Base , TimestampMixin ):
593
+ class EntryRecipient (Base , TimestampMixin , ContentMixin ):
594
594
""" Represents a single recipient.
595
595
"""
596
596
@@ -628,6 +628,28 @@ def subscription(self) -> EntrySubscription:
628
628
nullable = False
629
629
)
630
630
631
+ @property
632
+ def is_inactive (self ) -> bool :
633
+ """
634
+ Checks if the directory entry recipient's email address is marked as
635
+ inactive.
636
+
637
+ Returns:
638
+ bool: True if the email address is marked as inactive, False
639
+ otherwise.
640
+ """
641
+ return self .meta .get ('inactive' , False )
642
+
643
+ def mark_inactive (self ) -> None :
644
+ """
645
+ Marks the recipient's email address as inactive.
646
+
647
+ This method sets the 'inactive' flag in the recipient's metadata to
648
+ True. It is typically used when a bounce event causes the email
649
+ address to be deactivated by Postmark.
650
+ """
651
+ self .meta ['inactive' ] = True
652
+
631
653
632
654
class EntrySubscription :
633
655
""" Adds subscription management to a recipient. """
You can’t perform that action at this time.
0 commit comments