Manage contact for domain names on OVH provider
Use PHP Composer :
composer install
Generate Script Keys : OVH API credentials
Create .env file
cp .env.example .env
Then change value based on your credentials
Create a CSV file with ID and confirmation token received by email : id,token
Download all confirmation emails (eml or txt format) Bash command line to parse them:
cat *.eml | grep "https://www.ovh.com/manager/\#/useraccount/contacts" | cut -d"/" -f8 | sed "s/?tab=REQUESTS&token=/,/g" > tokens.csv
See tokens.csv example.
php -S localhost:8000