Skip to main content

Enhanced Gmail sender

Project description

Python Simple Email Sender

A lightweight Python library for sending emails with attachments via SMTP.


Features

  • Send emails using SMTP protocol
  • Support for SSL encryption
  • Add attachments to emails
  • Environment variable-based configuration
  • Simple logging integration

Installation

pip install python-simple-email-sender

Usage

Basic Setup

First, set up your email credentials as environment variables:

export EMAIL_ADDRESS="your.email@gmail.com"
export EMAIL_PASSWORD="your-app-password-or-email-password"

Note: For Gmail accounts, you may need to use an App Password instead of your regular password, especially if you have 2-factor authentication enabled. https://myaccount.google.com/apppasswords


Simple Example

from python_simple_email_sender import EmailSender

# Create an instance with default settings (Gmail SMTP)
sender = EmailSender()

# Send a simple email
sender.send_email(
    to_email=["recipient@example.com"],
    subject="Hello from Python",
    message="This is a test email sent using Python Simple Email Sender."
)

Custom SMTP Server

# For a different email provider
sender = EmailSender(
    server_name="smtp.yourprovider.com",
    server_port=587  # Use the appropriate port for your provider
)

Sending with Attachments

sender.send_email(
    to_email=["recipient@example.com", "another@example.com"],
    subject="Report Attached",
    message="Please find the attached report.",
    attachment_file="path/to/your/file.pdf"
)

Adding Multiple Attachments

sender = EmailSender()

# Create the email
sender.msg = MIMEMultipart()
sender.msg['From'] = sender.email_address
sender.msg['To'] = 'recipient@example.com'
sender.msg['Subject'] = 'Multiple Attachments'

# Add message body
text = MIMEText("Here are the files you requested.")
sender.msg.attach(text)

# Add multiple attachments
sender.add_attachment("document.pdf", subtype="pdf")
sender.add_attachment("data.csv", subtype="csv")
sender.add_attachment("image.png", subtype="png")

# Send the email
with smtplib.SMTP_SSL(sender.server_name, sender.server_port) as smtp_server:
    smtp_server.login(sender.email_address, sender.email_password)
    smtp_server.sendmail(
        from_addr=sender.email_address, 
        to_addrs=['recipient@example.com'], 
        msg=sender.msg.as_string()
    )

🤝 Contributing

If you have a helpful tool, pattern, or improvement to suggest: Fork the repo
Create a new branch
Submit a pull request
I welcome additions that promote clean, productive, and maintainable development.


🙏 Thanks

Thanks for exploring this repository!
Happy coding!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_simple_email_sender-1.0.5.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_simple_email_sender-1.0.5-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file python_simple_email_sender-1.0.5.tar.gz.

File metadata

File hashes

Hashes for python_simple_email_sender-1.0.5.tar.gz
Algorithm Hash digest
SHA256 d623319191d376ebf33e38e20cd605f3cdaf04414bb3b9afeb4ae61145b2917c
MD5 9f458305531eeaf05fd6e240e0fe6dad
BLAKE2b-256 2a8a69e306e7511245b8c6017bcca93e9bc89d796a2845e3447443ef79fd0727

See more details on using hashes here.

File details

Details for the file python_simple_email_sender-1.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for python_simple_email_sender-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e66be432cb400305a41dfe3b8f2ad85049ad1913d0c962b16a8e7af8b74c25b8
MD5 7624b52c23310a96a4e2692929e0baf8
BLAKE2b-256 f2dd879869a16bd0c12b1994498a286b5385c0c4366e3969e04457a3f107f8b4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page