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 algo más.
¿Hay alguna forma de detectar o atrapar esta afección? -Gracias. -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:"me@law.edu"}
end tell
delay 7
send new_message
end tell