Help for this page

Select Code to Download


  1. or download this
    if ($email_address eq 'first.last@example.com') {
        # OK - process normally
    ...
    else {
        # Possibly not OK - phishing check
    }
    
  2. or download this
    my %valid_email_for = (
        'Display Name' => {
    ...
    else {
        # Possibly not OK - phishing check
    }