mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
47 lines
1.0 KiB
Python
47 lines
1.0 KiB
Python
'''
|
|
Module of Windows API for plyer.email.
|
|
'''
|
|
|
|
import os
|
|
try:
|
|
from urllib.parse import quote
|
|
except ImportError:
|
|
from urllib import quote
|
|
from plyer.facades import Email
|
|
|
|
|
|
class WindowsEmail(Email):
|
|
'''
|
|
Implementation of Windows 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))
|
|
|
|
# WE + startfile are available only on Windows
|
|
try:
|
|
os.startfile(uri)
|
|
except WindowsError:
|
|
print("Warning: unable to find a program able to send emails.")
|
|
|
|
|
|
def instance():
|
|
'''
|
|
Instance for facade proxy.
|
|
'''
|
|
return WindowsEmail()
|