Hi, I have a database (which I access to with Database Events) containing well over 1200 email address and was wondering if there was a way to validate each address by running a script or a shell that would result into a “true” or “false” statement that I could fit in the following script:
tell application “Database Events”
database “~/Documents/Databases/base de donnees journaux.dbev”
tell database “base de donnees journaux”
set my_record_list to get name of every record
repeat with this_record in my_record_list
try
set email_contact to (get value of field “contact” of record this_record)
end try
–verify if email_contact is a valid email address
end repeat
end tell
end tell