0 votos

¿Hacer una sola línea de texto en negrita en un mensaje de correo usando Automator?

Tengo un automator script que crea un nuevo correo electrónico utilizando la aplicación Mail.

En este mensaje, me gustaría una sola línea en negrita como se ve aquí:

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

1voto

user3439894 Puntos 5883

Lo siguiente ejemplo AppleScript código es una forma de lograr su objetivo:

set clipContent to (the clipboard as text)

set lineOfBoldText to "Line of text <---- I want this line in **BOLD**"

set myContent to linefeed & "Line of text" & linefeed & linefeed & ¬
    clipContent & linefeed & linefeed & linefeed & lineOfBoldText & ¬
    linefeed & linefeed & linefeed & "Regards," & linefeed & "Name"

set x to offset of lineOfBoldText in myContent
set y to x + (length of lineOfBoldText)

tell application "Mail"
    set myMessage to make new outgoing message at ¬
        the end of outgoing messages with properties ¬
        {subject:"subject", content:myContent}
    tell myMessage
        make new to recipient at ¬
            end of to recipients with properties ¬
            {address:"email@email.com"}
        set font of characters x thru y to "Helvetica Bold"
    end tell
end tell

Habiendo copiado al portapapeles "En este mensaje, me gustaría una sola línea en negrita como se ve aquí:" de su OP y ejecutar el ejemplo AppleScript código , que se muestra en mi respuesta, en Script Editor Aquí hay una captura de pantalla de los resultados:

enter image description here

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X