Jump to content

Send new email to myself


Recommended Posts

Hi,

 

I regularly send emails to myself and would like to use Alfred to automate the process. 

 

It would have to create a new email and set the sender field to my email address.

 

Am I missing an easy way to do this?

 

Thanks!

LT

 

You could do this would a workflow that executes the following AppleScript

tell application "Mail"
	activate
	set theMessage to make new outgoing message
	tell theMessage
		make new to recipient with properties {address:"<your email address>"}
	end tell
end tell
Link to comment

Hi,

 

I regularly send emails to myself and would like to use Alfred to automate the process. 

 

It would have to create a new email and set the sender field to my email address.

 

Am I missing an easy way to do this?

 

Thanks!

LT

 

David's suggested one possible way to do this, but if you're not comfortable with AppleScript, you can also create a one-item very simple workflow for this. It requires hitting two keys before you can start typing.

 

Create a new workflow and add a single Hotkey trigger. Set the hotkey to what you like, set the action to "Show Alfred" and the argument to "Text" with the text "email Latency" (or more likely your real name, as you have it in your Contacts app). :)

 

When you press the hotkey, Alfred will pop up with "email Latency" pre-filled in, so you can hit return and start typing your email.

 

Hope this helps!

Vero

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...