Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-notification-sender

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-notification-sender

Pluggable app to centralize notification configuration.

  • 0.1.0
  • PyPI
  • Socket score

Maintainers
1

Notifications

Pluggable app to centralize notification configuration.

Available settings:

  • NOTIFICATIONS_MAIL_FROM - sender for mail notifications (falls back to settings.DEFAULT_FROM_EMAIL)
  • NOTIFICATIONS_SLACK_APP_TOKEN - Slack app token to be used to post the notifications using API, not incoming webhook (no default, set it or slack won't work!)

To use external notifications make sure to update your project urls.py to add a valid path for notifications

urlpatterns = [
    ...
    path(
        'api/notifications/', include(('notifications.urls', 'notifications'), namespace='notifications')
    ),
    ...
]

This would allow external notifications to be POSTed to api/notifications/notify/

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc