Manejador de errores de correo de AppleScript

0

Tengo un script para enviar un correo electrónico, pero me gustaría detectar si no hay una cuenta de correo electrónico configurada y hacer otra cosa.

¿Hay alguna forma de detectar o atrapar esta condición? Gracias.

tell application "Mail"
    set new_message to make new outgoing message with properties {visible:false, subject:"AppleScript-2014", content:("Success " & linefeed & "user: " & userName & linefeed & "OS: " & (system version of (get system info)) as rich text) & linefeed & "IP: " & IPv4 address of (get system info)}

    tell new_message
        make new to recipient with properties {name:"Len", address:"[email protected]"}
    end tell
    delay 7
    send new_message
end tell
    
pregunta Len 16.06.2014 - 21:36

1 respuesta

0

Esto debería hacerlo ...

tell application "Mail"
    set nAccounts to every account
    log "Number of accounts: " & (get count of nAccounts)
end tell
    
respondido por el Vic 17.06.2014 - 16:40

Lea otras preguntas en las etiquetas