# Email to Clipboard Utility

## Description
This script copies your email to the clipboard, waits 5 seconds, then clears it.
It can be useful since we have to type our email pretty often to log in to different systems.

## Installation

1. Create the script and make it executable on your machine (i.e. chmod +x email_clipboard.py).
2. Create an Automator App:
   - Open Automator, select "Application"
   - Add "Run Shell Script" with contents:
    ```bash
    export MY_WORK_EMAIL="your.email@example.com"
    /your/path/to/email_clipboard.py
    ```
   - Save as EmailToClipboard.app in a folder.
3. Add to Dock:
   Drag EmailToClipboard.app to your Dock.
