summaryrefslogtreecommitdiff
path: root/external/plyer/facades/email.py
diff options
context:
space:
mode:
authorLivio Recchia <recchialivio@libero.it>2020-02-10 23:06:34 +0100
committerLivio Recchia <recchialivio@libero.it>2020-02-10 23:06:34 +0100
commit9a13903a2f7d3a65fdf15a65fb59cccd622e2066 (patch)
tree9403b7dff39eb5e5d7fa0f79efb69b496add4c4b /external/plyer/facades/email.py
parent11cc316b74d5f3f283413a33e7693b314741aa4a (diff)
downloadmanachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.tar.gz
manachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.tar.bz2
manachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.tar.xz
manachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.zip
Initial commit
Diffstat (limited to 'external/plyer/facades/email.py')
-rw-r--r--external/plyer/facades/email.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/external/plyer/facades/email.py b/external/plyer/facades/email.py
new file mode 100644
index 0000000..6056a16
--- /dev/null
+++ b/external/plyer/facades/email.py
@@ -0,0 +1,23 @@
+class Email(object):
+ '''Email facade.'''
+
+ def send(self, recipient=None, subject=None, text=None,
+ create_chooser=None):
+ '''Open an email client message send window, prepopulated with the
+ given arguments.
+
+ :param recipient: Recipient of the message (str)
+ :param subject: Subject of the message (str)
+ :param text: Main body of the message (str)
+ :param create_chooser: Whether to display a program chooser to
+ handle the message (bool)
+
+ .. note:: create_chooser is only supported on Android
+ '''
+ self._send(recipient=recipient, subject=subject, text=text,
+ create_chooser=create_chooser)
+
+ # private
+
+ def _send(self, **kwargs):
+ raise NotImplementedError()