Use Python to:
- send a plain text email
- send an email with attachment
- receive and filter emails according to some criteria
| #target photoshop | |
| var doc = app.activeDocument; | |
| function cTID(s) { return app.charIDToTypeID(s); }; | |
| function sTID(s) { return app.stringIDToTypeID(s); }; | |
| app.bringToFront(); | |
| main(); |
Use Python to: