-
This is a numbered list.
-
I'm going to include a fenced code block as part of this bullet:
Code More Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell (current date) to get (it's month as integer) & "-" & day & "-" & (it's year as integer) | |
set MyDay to the result as text | |
set Mytitle to "Daily Email - " as text | |
set Mytitle to Mytitle & MyDay | |
tell application "Microsoft Outlook" | |
set newMessage to make new outgoing message with properties {subject:Mytitle} | |
make new recipient at newMessage with properties {email address:{name:"Name", address:"[email protected]"}} | |
#make new cc recipient at newMessage with properties {email address:{name:"Name", address:"[email protected]"}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |
NewerOlder