Jump to content


Photo

New Outlook mail message


  • Please log in to reply
19 replies to this topic

#1 David

David
  • Members
  • 25 posts

Posted 09 August 2004 - 05:45 PM

This starts a new e-mail message in Outlook. Nothing earth-shattering but it's something I use constantly.

#z:: Run, "%programfiles%\Microsoft Office\OFFICE11\OUTLOOK.EXE" /c ipm.note


#2 Chris

Chris
  • Administrators
  • 10727 posts

Posted 09 August 2004 - 06:35 PM

That's neat, thanks.

#3 Payam

Payam
  • Members
  • 62 posts

Posted 09 August 2004 - 10:15 PM

David, thank you!
May I ask how you found this out as I'd like to find some other commands as well.
Thanks

#4 ck

ck
  • Members
  • 8 posts

Posted 09 August 2004 - 10:19 PM

Google is your friend:

<!-- m -->http://www.outlook-t...ommandlines.htm<!-- m -->

#5 Kilav

Kilav
  • Guests

Posted 10 August 2004 - 05:19 AM

Get some more.
Microsoft Outlook - Command line options I - Tue Jul 13, 2004 7:23 am
Microsoft Outlook - Command line options II - Sat Jul 17, 2004 8:23 am
Same topic - Same forum

#6 David

David
  • Members
  • 25 posts

Posted 10 August 2004 - 03:55 PM

I found the codes in Outlook help, under "Command-line switches":
[*:1qtxrop9] /c ipm.activity creates a Journal entry
[*:1qtxrop9] /c ipm.appointment creates an appointment
[*:1qtxrop9] /c ipm.contact creates a contact
[*:1qtxrop9] /c ipm.note creates an e-mail message
[*:1qtxrop9] /c ipm.stickynote creates a note
[*:1qtxrop9] /c ipm.task creates a task

#7 MisterGank

MisterGank
  • Members
  • 26 posts

Posted 11 August 2006 - 03:52 AM

This is GREAT info!!!

So, what I'm gathering and reading...

Outlook.exe /c ipm.note /m test@poremsky.com

Will auto fill out the address line! This is great!

Next step that I can't find, whats the commad for filling out possible cc, bcc, and the subject? then body? or am I just trying to hard?

#8 MisterGank

MisterGank
  • Members
  • 26 posts

Posted 11 August 2006 - 04:11 AM

oh geez I guess I completely forgot about using the whole thing of

mailto:no@mail.com?Body=Hello Sir &subject=Greetings

Hurm, whats the differance?

#9 vishy4

vishy4
  • Members
  • 1 posts

Posted 12 July 2010 - 08:00 AM

For Office 2007, change the string from Office 11 to Office 12, i got an error, hence posting here, so others can solve it.

#z:: Run, "%programfiles%\Microsoft Office\OFFICE12\OUTLOOK.EXE" /c ipm.note


#10 641E25EC-8EB0-11DF-976B-2

641E25EC-8EB0-11DF-976B-2
  • Guests

Posted 13 July 2010 - 06:57 PM

The only difference between your call and mine is that I don't have a comma after the "Run" (and I hard-coded "program files"). My call works and looks like this:

^!m::
Run "c:\program files\microsoft office\office12\outlook.exe" /c ipm.note
Return

#11 virulency

virulency
  • Members
  • 3 posts

Posted 05 August 2010 - 06:24 PM

i think i have figured out how to send an email with an attachment and subject body and to field filled out

run, C:\Program Files\Microsoft Office\Office12\outlook.exe /c ipm.note /a "filename.txt" /m email.com&subject=something`%20something&body=somethingsomething

to create a space you must use `%20

`marks out the % sign so it makes a space, spaces are not allowed and cause the command line argument/verify switch error

also variables do work

#12 Ludo

Ludo
  • Members
  • 18 posts

Posted 17 September 2011 - 01:26 PM

You can also use (for Outlook 2003) the following shortcuts:

CTRL+SHIFT+M for a new message
replace M by a for an appointment or c for a contact, l for a list.

so I send ^+m then the recipient address then tab then the cc then tab then the object etc.

I've a CTRL+F1 to Fxx for the peoples I emailed very often. :)

#13 BigMan

BigMan
  • Members
  • 137 posts

Posted 20 January 2012 - 03:55 PM

I tried this and it seems to work pretty well, but I cannot get the attachment part to work. Not sure if I really have a use for it right now, but think it could be valuable knowledge for the future.

Also, how do you get it to SEND once your done?

;;;THIS RUN WILL PUT john doe in the TO and PUT LetterJob Process IN SUBJECT LINE AND Complete IN THE BODY OF E-MAIL
Run, C:\Program Files\Microsoft Office\Office12\outlook.exe /c ipm.note /c "Documents and Settings\xxx1234\My Documents\testsb.txt" /m john.doe@anyjob.com&subject=LetterJob`%20Process&body=COMPLETE 


;;;ANOTHER OPTION
;;;THIS RUN ALSO WORKS AND ALLOWS YOU TO SEND MORE INFO MUCH EASIER
Run "c:\program files\microsoft office\office12\outlook.exe" /c ipm.note /m john.doe@anyjob.com
Send {Tab 2}
Sleep 100
Send Letter job has completed successfully
Sleep 100
Send {Tab}
Send Job completed successfully, please check in morning for verification
Sleep 100


#14 Ludo

Ludo
  • Members
  • 18 posts

Posted 21 January 2012 - 05:32 PM

When the email is open, CTRL+ENTER (for outlook 2003) will send the message.

If you wish to automate everything I recommand to launch the script offline so that you can check if something went wrong instead of sending tens of "wrong" emails.

#15 Xx7

Xx7
  • Members
  • 618 posts

Posted 22 January 2012 - 06:48 PM

Thanks BigMan! I will use that :)