• langwellenreiter

    (@langwellenreiter)


    Could you please confirm if it’s possible to implement the following process for email verification before sending out download links?

    1. When a download is requested, a notification email is first sent to an admin for review.
    2. The admin verifies whether the request is from one of our customers.
      • If approved: The system sends the user an email with the download link to the file.
      • If denied: The system sends a customizable email notifying the user that their request could not be verified.

    We are happy to purchase the pro version if this feature is included.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter langwellenreiter

    (@langwellenreiter)

    ah… maybe we don’t need it after all.

    sorry for the trouble. ??

    still might be a good idea for other people.

    Plugin Author mkscripts

    (@mkscripts)

    Hi,

    It is possible to add your own validation rules to your download forms by using the filter ‘dae_form_validation’. Here you can perform custom checks, for example whether the email address appears in a custom list or whether it has an account on your site. Depending on the outcome, you can run your own specific code and cancel or continue the submit process. The submit message at the bottom of the download form can also be adjusted via a filter.

    apply_filters( 'dae_form_validation', false, $values );
    apply_filters( 'dae_form_validation_message', __( 'Please make sure all fields are filled in correctly.', 'download-after-email' ) );

    These filters are located in ../includes/shortcodes.php and available within the free version, you don’t need a premium extension for this.

    Kind regards,
    Team Download After Email

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.