1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
Description: <short summary of the patch>
TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
.
flask-mail (0.9.1+dfsg1-3) unstable; urgency=medium
.
* Team Upload
* Update d/watch for new PyPi archive naming policy
* Switch to DebHelper 13
* Add dependency on new python3-speaklater & enable most tests
Author: Alexandre Detiste <tchet@debian.org>
---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2025-01-07
--- flask-mail-0.9.1+dfsg1.orig/docs/index.rst
+++ flask-mail-0.9.1+dfsg1/docs/index.rst
@@ -1,8 +1,6 @@
flask-mail
======================================
-.. module:: flask-mail
-
One of the most basic functions in a web application is the ability to send
emails to your users.
@@ -14,7 +12,6 @@ Links
* `documentation <http://packages.python.org/Flask-Mail/>`_
* `source <http://github.com/mattupstate/flask-mail>`_
-* :doc:`changelog </changelog>`
Installing Flask-Mail
---------------------
@@ -219,8 +216,6 @@ a message with newlines in the subject,
Signalling support
------------------
-.. versionadded:: 0.4
-
**Flask-Mail** now provides signalling support through a ``email_dispatched`` signal. This is sent whenever an email is
dispatched (even if the email is not actually sent, i.e. in a testing environment).
@@ -236,18 +231,7 @@ app instance as an optional argument::
API
---
-.. module:: flask_mail
-
-.. autoclass:: Mail
- :members: send, connect, send_message
-
-.. autoclass:: Attachment
-
-.. autoclass:: Connection
- :members: send, send_message
-
-.. autoclass:: Message
- :members: attach, add_recipient
+The API documentation can be read using ``pydoc flask_mail``.
.. _Flask: http://flask.pocoo.org
.. _GitHub: http://github.com/mattupstate/flask-mail
|