Keep in Touch
Offers a widget that enables visitors to subscribe for receiving by email a weekly digest of newly added posts. This keeps the users closer to your site and doesn’t force them to “poll” for updates. The widget only shows an input field for the email address and a ‘Subscribe’ button. Then a short procedure is started to confirm the subscription: No validation is performed on the entered email address. After clicking on ‘Subscribe’, the user is presented a virtual page in which she is asked to re-enter the email address and click again on a ‘Subscribe’ button. This is a simple measure against robots placing subscription requests. Again, no validation is performed on the entered email address except it is matched with the one previously entered. In case of a match, an email message is sent to the user containing a link with a unique code, on which the user has to click to confirm her request. The user is informed by this in a new virtual page. After the user clicks on the link in the email, the email address is considered subscribed and it will receive weekly messages containing a digest of new posts from the previous week, with direct links to the respective pages. In each message there is also a link to allow the user to unsubscribe. Unsubscribing follows a similar pattern in which the user will first receive an email to confirm the request, with a link containing a unique code. To keep it simple, no check is performed as to whether a user is already registered or not. Any request can be performed in any phase of the process. Weekly emails are sent using wp_mail(), on a configurable weekday at a configurable time. Even when no posts have been added, the user will still receive and email to inform her of that. The emails will all contain the heading image of the theme at the top. Until support is provided for selecting subscriptions, all subscribers will be subscribed for the weekly digest and the newsletter. Warning! Only tested with the permalink format set as “/index.php/%year%/%monthnum%/%day%/%postname%/” on a Windows server. Don’t know if it works with other formats, although the implementation is quite generic. Options page The plugin registers an option page that enables admins to: configure the weekday and time-of-day when the digests are sent (re)send the digest(s) to subscribers or to given email addresses send a newsletter to subscribers or to given email addresses Wishlist Some features to be added in some future version: Daily and maybe monthly digest. Timed removal of unconfirmed requests. Configurable messages and format(s) of digest(s) Support for selecting subscription options (digest, newsletter)
Top keywords
- email12×2.63%
- user9×1.97%
- digest7×1.54%
- address5×1.10%
- email address5×1.10%
- link4×0.88%
- page4×0.88%
- performed4×0.88%
- subscribe4×0.88%
- weekly4×0.88%
- added3×0.66%
- configurable3×0.66%
Store file uploads for Contact Form 7
By default, Contact Form 7 dose not keep data it sends trough it’s contact forms. While plugins like Flamingo save that data, uploaded files are not added to Media Library. This plugin will save uploaded files to Media Library before email is sent by CF7. This plugin will raise an event with the the full file path & name. Subscribe to nmr_create_attachment_file_name filter to get and/or update data before attachment is added to media library. // The filter callback function. function example_callback( $file_name ) { // (maybe) modify $file_name. return $file_name; } add_filter( 'nmr_create_attachment_file_name', 'example_callback', 10, 1 ); Subscribe to nmr_before_insert_attachment filter to be able to change attachment attributes: caption and description are ‘post_excerpt’ and ‘post_content’. For other attributes, check documentation for wp_insert_attachment. // The filter callback function. function before_insert_attachment_callback( $attachment ) { // (maybe) modify $attachment array. return $attachment; } add_filter( 'nmr_before_insert_attachment', 'before_insert_attachment_callback', 10, 1 ); Optionally, subscribe to nmr_should_skip_save_attachment_to_media_library filter to be able to skip saving the attachment to media library: return true to skip, false is the default behaviour that saves the attachment to media library. Filter nmr_before_insert_attachment will not be called if skip was true. // The filter callback function. function skip_media_library_callback( $skip_save_to_media_library ) { // return true to skip saving to Media Library, false to save. return true; } add_filter( 'nmr_should_skip_save_attachment_to_media_library', 'skip_media_library_callback', 10, 1 ); This plugin will send the final attachment id if you are interested in getting other details, like attachment url. Listen to nmr_create_attachment_id_generated action. // The action callback function. function example_callback_id_generated( $attachment_id ) { // (maybe) do something with the args. $url = wp_get_attachment_url( $attachment_id ); } add_action( 'nmr_create_attachment_id_generated', 'example_callback_id_generated', 10, 1 ); Docs & Support Check the support forum on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it. Store file uploads for Contact Form 7 Needs Your Support It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using -Store file uploads for Contact Form 7- and find it useful, please consider making a donation. Your donation will help encourage and support the plugin’s continued development and better user support. Privacy Notices With the default configuration, this plugin, in itself, does not: track users by stealth; write any user personal data to the database; send any data to external servers; use cookies. It will, however store uploaded files trough Contact Form 7 in WordPress Media Library. Make sure your website users are aware of this fact!!! Pro Version Need more? The Pro version adds 13 features: Per-form control — choose which forms save files, set custom folder and rename pattern per form Auto-rename — rename files using patterns like {name}-{date}.{ext} from other CF7 fields Unique filenames — automatically avoid overwriting files with the same name Custom upload folder — save files to a specific subfolder per form File URL in email — replace [file] mail tag with a clickable link instead of an attachment Skip-mail compatibility — save files even when CF7’s skip_mail: on is set Upload log — admin screen listing every uploaded file with form, date, size, and download link Private files — store files outside the Media Library with access protection Admin notification — receive an email with file link on every upload Flamingo integration — link uploaded files to Flamingo inbound message entries Auto-delete — remove uploads older than a configurable number of days Image resize / compress — resize and compress images on upload Duplicate detection — skip saving if the same file was already uploaded (MD5 check) Get Pro →