diff --git a/QUICK_START.rst b/QUICK_START.rst
index 030cf78d..cdcbdbc5 100644
--- a/QUICK_START.rst
+++ b/QUICK_START.rst
@@ -84,6 +84,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
'easy_thumbnails', # Required by `content_image` plugin
'fobi.contrib.plugins.form_elements.content.content_image',
+ 'fobi.contrib.plugins.form_elements.content.content_image_url',
'fobi.contrib.plugins.form_elements.content.content_text',
'fobi.contrib.plugins.form_elements.content.content_video',
@@ -94,6 +95,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
'fobi.contrib.plugins.form_handlers.db_store',
'fobi.contrib.plugins.form_handlers.http_repost',
'fobi.contrib.plugins.form_handlers.mail',
+ 'fobi.contrib.plugins.form_handlers.mail_sender',
Putting all together, you would have something like this.
@@ -147,6 +149,7 @@ Putting all together, you would have something like this.
# Form element plugins
'easy_thumbnails', # Required by ``content_image`` plugin
'fobi.contrib.plugins.form_elements.content.content_image',
+ 'fobi.contrib.plugins.form_elements.content.content_image_url',
'fobi.contrib.plugins.form_elements.content.content_text',
'fobi.contrib.plugins.form_elements.content.content_video',
@@ -154,6 +157,7 @@ Putting all together, you would have something like this.
'fobi.contrib.plugins.form_handlers.db_store',
'fobi.contrib.plugins.form_handlers.http_repost',
'fobi.contrib.plugins.form_handlers.mail',
+ 'fobi.contrib.plugins.form_handlers.mail_sender',
# ...
)
diff --git a/README.rst b/README.rst
index 1347151b..371ca8bb 100644
--- a/README.rst
+++ b/README.rst
@@ -265,6 +265,7 @@ Or latest stable version from BitBucket:
'fobi.contrib.plugins.form_handlers.db_store',
'fobi.contrib.plugins.form_handlers.http_repost',
'fobi.contrib.plugins.form_handlers.mail',
+ 'fobi.contrib.plugins.form_handlers.mail_sender',
# Other project specific apps
'foo', # Test app
@@ -1943,6 +1944,9 @@ in directory of each plugin for details.
- `Mail
`__:
Send the form data by email.
+- `Mail the sender
+ `__:
+ Send the form data by email to the sender.
Bundled themes
--------------
diff --git a/docs/index.rst b/docs/index.rst
index 90e46827..c55b8caa 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -265,6 +265,7 @@ Or latest stable version from BitBucket:
'fobi.contrib.plugins.form_handlers.db_store',
'fobi.contrib.plugins.form_handlers.http_repost',
'fobi.contrib.plugins.form_handlers.mail',
+ 'fobi.contrib.plugins.form_handlers.mail_sender',
# Other project specific apps
'foo', # Test app
@@ -1943,6 +1944,9 @@ in directory of each plugin for details.
- `Mail
`__:
Send the form data by email.
+- `Mail the sender
+ `__:
+ Send the form data by email to the sender.
Bundled themes
--------------
diff --git a/docs/quickstart.rst b/docs/quickstart.rst
index 030cf78d..cdcbdbc5 100644
--- a/docs/quickstart.rst
+++ b/docs/quickstart.rst
@@ -84,6 +84,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
'easy_thumbnails', # Required by `content_image` plugin
'fobi.contrib.plugins.form_elements.content.content_image',
+ 'fobi.contrib.plugins.form_elements.content.content_image_url',
'fobi.contrib.plugins.form_elements.content.content_text',
'fobi.contrib.plugins.form_elements.content.content_video',
@@ -94,6 +95,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
'fobi.contrib.plugins.form_handlers.db_store',
'fobi.contrib.plugins.form_handlers.http_repost',
'fobi.contrib.plugins.form_handlers.mail',
+ 'fobi.contrib.plugins.form_handlers.mail_sender',
Putting all together, you would have something like this.
@@ -147,6 +149,7 @@ Putting all together, you would have something like this.
# Form element plugins
'easy_thumbnails', # Required by ``content_image`` plugin
'fobi.contrib.plugins.form_elements.content.content_image',
+ 'fobi.contrib.plugins.form_elements.content.content_image_url',
'fobi.contrib.plugins.form_elements.content.content_text',
'fobi.contrib.plugins.form_elements.content.content_video',
@@ -154,6 +157,7 @@ Putting all together, you would have something like this.
'fobi.contrib.plugins.form_handlers.db_store',
'fobi.contrib.plugins.form_handlers.http_repost',
'fobi.contrib.plugins.form_handlers.mail',
+ 'fobi.contrib.plugins.form_handlers.mail_sender',
# ...
)