function tep_validate_email()

Open to all! Ask other shopowners for help.
Post Reply
Omar_one
Senior Contributor
Posts: 677
Joined: Fri Oct 25, 2019 5:06 pm
Phoenix Version: v1.0.8.16
Has thanked: 100 times
Been thanked: 56 times

function tep_validate_email()

Post by Omar_one »

Hello,
is there any replacement function for tep_validate_email()
I am trying to update old addon have this function

Code: Select all

$validEmail = tep_validate_email($order->customer['email_address']);
        if (!$validEmail) {
            $order->customer['email_address'] = '';
Omar


Join The Code Co-op to get access to your library in the Code Co-op Forum
User avatar
bonbec
Contributor
Posts: 190
Joined: Mon Oct 26, 2020 12:23 pm
Phoenix Version: V1.1.0.7
Has thanked: 54 times
Been thanked: 40 times

Re: function tep_validate_email()

Post by bonbec »

Hello Omar,

filter_var($email_address, FILTER_VALIDATE_EMAIL)

found in the Phoenix_change_log from (line 177)
Old MS2.2 PHP7.4 site being converted to CE Phoenix v1.1.0.6 PHP 8.3
Omar_one
Senior Contributor
Posts: 677
Joined: Fri Oct 25, 2019 5:06 pm
Phoenix Version: v1.0.8.16
Has thanked: 100 times
Been thanked: 56 times

Re: function tep_validate_email()

Post by Omar_one »

bonbec wrote: Sat Oct 11, 2025 8:19 pm Hello Omar,

filter_var($email_address, FILTER_VALIDATE_EMAIL)

found in the Phoenix_change_log from (line 177)
thank you @bonbec
I just come back to delete this post as I found it ,, but you are fast as lightning :D


Join The Code Co-op to get access to your library in the Code Co-op Forum
Post Reply