ArgentWolf Email Verification provides local, self-hosted email verification for newly registered WordPress users.
The plugin does not call an external email-verification API. It creates a one-time verification link locally and sends the message through WordPress wp_mail() and the site’s configured mail transport.
Core behavior:
wp_mail() messages to pending account addresses can be suppressed.The plugin does not prove that a mailbox exists without sending a message, replace SMTP service, process bounces, or guarantee inbox delivery.
The settings page is under Settings > Email Verification.
Default: seven days. Enter zero to disable automatic deletion. Valid range: zero to 365 days.
Enabled by default. Normal wp_mail() messages to pending account addresses are suppressed. This cannot intercept another plugin that bypasses wp_mail() and sends through its own transport or remote API.
Displays the pending-account count and the next scheduled cleanup. Administrators can also run cleanup manually.
The plugin stores verification status and limited verification-workflow metadata in WordPress user metadata.
Raw verification tokens are not stored. The plugin stores a keyed token hash, expiration time, message-request time, and limited registration-workflow state.
The plugin includes suggested privacy-policy text and WordPress personal-data exporter and eraser integration. Token and message metadata can be erased, but verification status is retained because removing it could alter account-access security.
Canonical filters and actions use the argentwolf_email_verification_ prefix. Selected legacy wrav_ev_* aliases remain for compatibility.
Important filters:
argentwolf_email_verification_link_lifetimeargentwolf_email_verification_resend_cooldownargentwolf_email_verification_cleanup_batch_sizeargentwolf_email_verification_auto_verify_new_userargentwolf_email_verification_email_subjectargentwolf_email_verification_email_messageargentwolf_email_verification_after_verification_urlargentwolf_email_verification_should_delete_pending_userImportant actions:
argentwolf_email_verification_user_verifiedargentwolf_email_verification_pending_user_deletedargentwolf_email_verification_pending_user_cleanup_skippedargentwolf_email_verification_mail_suppressedargentwolf_email_verification_errorThe error action receives a stable error code and a context array. It lets a logging or monitoring integration record operational failures without the plugin writing directly to the PHP error log.