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