plugin-icon

Double Opt-In Helper

제작자: Rock Lobster Inc.·
Double Opt-In Helper is a WordPress plugin that helps developers implement the double opt-in process in their plugins.
버전
1.0
활성화된 설치 항목
100
최근 업데이트일
May 7, 2024

Double Opt-In Helper is a WordPress plugin that helps developers implement the double opt-in process in their plugins.

What is double opt-in?

Double opt-in is a procedure used to confirm user’s consent. Today, service providers are required to obtain clear consent from users prior to collecting or using their personal data. In some situations, however, asking the user to tick an “I agree.” checkbox is not sufficient. Double opt-in serves a useful role in such situations.

A typical double opt-in process starts by the service provider sending an email message to the user. The message includes a URL link to the provider’s website and asks the user to click the link if they agree on conditions. Usually, the URL includes some sort of unique random code that works as a token to confirm the user’s consent.

By doing this, the service provider can confirm that the real user (not a bot or someone else) has consented, because only the user should be able to access messages to their email address.

I’m a developer. How can I use this plugin?

First, register an “agent” who can handle double opt-in sessions for you, and knows what to do when a user opts-in.

To register an agent, use the doihelper_register_agent() function. doihelper_register_agent() takes two parameters: the name of the agent (required), and an optional associative array of arguments. The available arguments are:

  • acceptance_period — The length of time (in seconds) for how long a double opt-in session remains live. Default value: 86400 (24 hours)
  • optin_callback — The callback function that will be called when a user opts-in.
  • email_callback — The callback function that will be called to send a confirmation email.

After registering an agent, start a double opt-in session by calling the doihelper_start_session() function. doihelper_start_session() takes two parameters: the name of the agent (required), and an optional associative array of arguments. The available arguments are:

  • email_to — The recipient’s email address, used for the confirmation email. If you omit this argument, no email will be sent. If you do not provide this argument, you will need to provide the user with the confirmation link another way.
  • properties — The properties array of the session. This array is to be passed to the optin_callback function as its only parameter. While you can include any information into this, the primary purpose of it is to pass user-related data to the opt-in callback.

The session data will be stored in the database until the user opts-in, or the acceptance period (from doihelper_register_agent()) expires.

무료Business 요금제에서
설치하면 WordPress.com 서비스 약관서드파티 플러그인 약관에 동의하게 됩니다.
테스트된 버전
WordPress 6.5.7
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.