Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
easily send out emails via python or the cli using python's SMTP module.
download the package using pip: pip install ezmail
.env
fileThis module uses environment files to handle sensitive info. Make sure the following values are defined in it:
USERNAME=sender@exmaple.com
PASSWORD=<password>
SMTP=<provider's SMTP server>
PORT=<provider's port>
See examples below for popular providers.
from ezmail import send_mail
# by default, an env file named `.env` is searched.
send_mail(
subject="Email sent with Python",
recipients=["r1@example.com", "John Doe <john@example.com>"],
message="Here go the contents of the message.",
)
python -m ezmail -s "Email sent from bash" -r "r1@example.com" "r2@example.com" -m "This is my message."
This module allows adding attachments to the email, as well as reading in the message and / or recipients from a file instead of defining them directly.
Python automatically detects the type of data that is passed into the different fields.
For example, to read the recipients from a file, simply pass in a Path or file object instead of a list of strings.
A file that defines the recipients must have one recipient per line:
r1@example.com
John Doe <john@example.com>
The message can also be taken from a Path or file object. If the message contents are html, remember to set the html
flag to True.
To add attachments, pass in a list of Paths or (read-binary) file objects. The type is automatically detected.
If an env file with a name different from .env
is used, pass it into envfile
as a Path object or a string
from pathlib import Path
from ezmail import send_mail
recipients_file = Path("path/to/recipients.txt")
messages_file = open("path/to/message.html", "r")
attachments = [
Path("path/to/attachment1.csv"),
open("path/to/attachment2.jpg", "rb"),
]
envfile = Path("my/.envfile")
send_mail(
subject="Email sent with Python",
recipients=recipients_file,
message=messages_file,
attachments=attachments,
envfile=envfile,
html=True,
)
python -m ezmail --help
to see how to call from the command line
Possible flags:
-s
or --subject
: the subject of the email (single argument)-m
or --message
: the contents of the email OR-f
or --file
: the file containing the contents of the email-r
or --recipients
: the recipients of the email (one or more arguments) OR-rf
or --recipientsfile
: the file containing the addresses of the recipients-a
or --attachments
: a list of files to attach to the email (one or more arguments)-e
or --env
: the env file where the credentials are defined (default .env
)-H
or --html
: (flag) if present, the contents of the message will be sent as html-v
or --verbose
: set SMTP server debug level to 1, to debug possible connection issuesHere is a brief description of popular SMTP servers.
If having trouble setting up the SMTP server, pass in verbose=True
into the python method, or the flag -v
on the cli version.
Gmail constantly changes the requirements to be able to send out emails through SMTP. It is recommended that you follow a guide.
Then, fill in the missing values from the following .env
file
USERNAME=
PASSWORD=
SMTP="smtp.gmail.com"
PORT=465
Zoho makes it very simple to send emails through SMTP. Fill in the missing values from the following .env
file and that's it!
USERNAME=
PASSWORD=
SMTP="smtp.zoho.com"
PORT=465
FAQs
easily send out emails via SMTP
We found that ezmail demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.