GithubHelp home page GithubHelp logo

p2-by-email's Introduction

This project is unmaintained. We recommend you check out Falcon.

=== P2 By Email === Contributors: danielbachhuber, humanmade Tags: gtd, productivity, workflow, p2, email notifications Requires at least: 3.4 Tested up to: 3.6-alpha Stable tag: 1.0

Use P2? Use email? Use both!

== Description ==

P2 By Email enables you to use P2 by email:

  • Get instant notifications when posts or comments are published.
  • Ensure you're always notified when your username is mentioned.
  • Reply to posts or comments by email.
  • Create new posts with a secret email address.

Perfect for communicating with your team while on the go.

Users can change their communication preferences from the default of all posts and comments using profile settings. A special setting can ensure they always receive an email when their username is mentioned.

Want another feature added? Send us a pull request and we'll consider it. Reply by email depends on a young email reply parsing class โ€” there's the chance a comment will appear oddly, and we welcome improvements to the regex.

== Installation ==

Want to get started using the plugin? Follow these steps:

  1. Download and install the plugin in your plugins directory.
  2. Activate the plugin.
  3. Profit!

By default, all users will receive all post and comment notifications.

Enabling posting or replying by email takes a few more steps:

  1. Register a Gmail or similar email account that supports IMAP.
  2. Add the code snippet below with account details to your theme's functions.php file. It tells P2 By Email that you're set up to use post or reply by email.
  3. Install wp-cli and set up a system cron job to regularly call wp p2-by-email ingest-emails.

`add_filter( 'p2be_email_replies_enabled', '__return_true' ); add_filter( 'p2be_emails_reply_to_email', function( $email ) { return '[email protected]'; }); add_filter( 'p2be_imap_connection_details', function( $details ) {

$details['host'] = '{imap.gmail.com:993/imap/ssl/novalidate-cert}';
$details['username'] = '[email protected]';
$details['password'] = 'PASSWORD';

return $details;

} );`

== Frequently Asked Questions ==

None yet... Feel free to ask a question in the forums!

== Changelog ==

= 1.1 (??? ?? ????) =

= 1.0 (May 8, 2013) =

  • Initial release. Email notifications for posts, comments, and mentions; post and reply by email with special configuration.

p2-by-email's People

Contributors

danielbachhuber avatar japh avatar joehoyle avatar rjmackay avatar westonruter avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.