Richard Hart

Head of Something @ Somewhere
Kent, UK

My Music
My Photos

LinkedIn
Mastodon

Generate a random email address in TextExpander with Applescript

Since my last post about generating random email addresses in TextExpander, I’ve move from using Ruby to Applescript to do so. Here is my script which essentially does the same thing.

set email to (do shell script "date +%s")
set email to email & "@yopmail.com"
set the clipboard to email
email