Page 1 of 1

Simple Email Address command

Posted: 17 Dec 2018, 08:27
by DevinC96
Need help with a simple command for Outlook. i have a directory of site numbers and associated emails. an example of would be 066 goes out to Test1@email.com, Test2@emailnation, etc. the code i was trying to use was simple email text string the text in but outlook wont recognize the emails with out a semi colon between emails. if i put on in the code it treats the rest of the emails and semi colons as comments. Thank you to anyone who tries to help.

Re: Simple Email Address command  Topic is solved

Posted: 17 Dec 2018, 08:38
by gregster
Escape the semicolons with the escape character ` (aka backtick)

Code: Select all

::066::Test1@email.com `; Test2@emailnation.com
Compare https://autohotkey.com/docs/commands/_E ... _Sequences

Re: Simple Email Address command

Posted: 17 Dec 2018, 08:44
by DevinC96
You are the best thank you so much the resolves the issue completely