J'ai un automate script qui crée un nouvel email en utilisant l'application Mail.
Dans ce message, je souhaite une seule ligne en gras comme ici :
on run {input, parameters}
set clipContent to (the clipboard as text)
tell application "Mail"
set myMessage to make new outgoing message at the beginning of outgoing messages with properties {subject:"subject"}
tell myMessage to make new to recipient at beginning of to recipients with properties {address:"email@email.com"}
set myMessage's content to "
Line of text
" & clipContent & "
Line of text <---- I want this line in **BOLD**
Regards,
Name"
return input
end run