xxxxxxxxxx
import webbrowser
# Replace 'recipient@example.com' with the email address you want to open the email client for
email_address = 'recipient@example.com'
# Create a "mailto" URL
mailto_url = f'mailto:{email_address}'
# Open the default email client
webbrowser.open(mailto_url)