Topic: Email w/o zip?

Hi, I apologize if this is a dumb question, but I can't figure it out. I'd like to have a circle that would let me drop text or an URL on it and would use Mail to send that to a specific group of email addresses.  Does that capability exist?  Thanks

Re: Email w/o zip?

Hi Mike

The closest is this script - https://github.com/aptonic/dropzone-use … n.dropzone
It lets you specify a name, email and subject to send to when you drop a file onto it.

Click the Raw button on GitHub and then save it somewhere. Then edit the bit at the top that says:

$SUBJECT = "Message Subject"
$BODY = "This is the message body."
$TO_NAME = "Test Person"
$TO_ADDRESS = "test@testing.com"

And fill in these fields with what you want. Make sure the file is saved with a .dropzone file extension and then double click to install.

Re: Email w/o zip?

Great, thank you, John