Sideband_CE/sbapp/plyer/platforms/macosx/email.py
2022-09-16 18:07:57 +02:00

50 lines
1.0 KiB
Python

'''
Module of MacOS API for plyer.email.
'''
import subprocess
try:
from urllib.parse import quote
except ImportError:
from urllib import quote
from plyer.facades import Email
from plyer.utils import whereis_exe
class MacOSXEmail(Email):
'''
Implementation of MacOS email API.
'''
def _send(self, **kwargs):
recipient = kwargs.get('recipient')
subject = kwargs.get('subject')
text = kwargs.get('text')
uri = "mailto:"
if recipient:
uri += str(recipient)
if subject:
uri += "?" if "?" not in uri else "&"
uri += "subject="
uri += quote(str(subject))
if text:
uri += "?" if "?" not in uri else "&"
uri += "body="
uri += quote(str(text))
subprocess.Popen(["open", uri])
def instance():
'''
Instance for facade proxy.
'''
import sys
if whereis_exe('open'):
return MacOSXEmail()
sys.stderr.write("open not found.")
return Email()