🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

smtp-email-notifier-utils

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smtp-email-notifier-utils

A simple module for send SMTP-based notification emails.

0.2.0
99

Supply Chain Security

100

Vulnerability

100

Quality

100

Maintenance

100

License

Maintainers
1

========================= SMTP Email Notifier Utils

A simple module for sending SMTP-based notification emails.

Usage

.. code-block:: python

from smtp_email_notifier_utils.email_notifier import send_notification

# Example usage
recipient = "someone@example.com"
subject = "Important Notification"
message = "Hello, this is your notification message."

success = send_notification(recipient, subject, message)
if success:
    print("Notification sent successfully!")
else:
    print("Failed to send notification")

Exported scripts

  • send-notification-email

.. code-block:: bash

send-notification-email --recipient someone@example.com --subject="Important Notification" --message="Hello, this is your notification message."

FAQs

Did you know?

Socket

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.

Install

Related posts