MCPcopy Create free account
hub / github.com/bterwijn/memory_graph / send

Method send

src/inheritance.py:30–33  ·  view source on GitHub ↗
(self, to_nr, message)

Source from the content-addressed store, hash-verified

28 self.from_nr = from_nr
29
30 def send(self, to_nr, message):
31 super().send(self.from_nr, to_nr, message)
32 print(f'sending SMS from:{self.from_nr} to:{to_nr}')
33 print(f'priority: {self.priority} message: "{message}"')
34
35email = Email_Notification(2, 'support@company.com')
36email.send('customer@email.com', 'Your report is ready')

Callers 2

sendMethod · 0.45
inheritance.pyFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected