Hello,
I would like to extract the id of a contact with the email address: test@gmail.com
Can someone help me find a mistake in the formula?
	
							
						
					I would like to extract the id of a contact with the email address: test@gmail.com
Can someone help me find a mistake in the formula?
HTML Code:
	$em = 'test@gmail.com';
$ids = record\findOne('Contact', 'createdAt', 'desc', 'emailAddress=', $em);

Comment