Hey Jared,
Yes, of course, it's really simple but will share it just in case.
set recipientAddress to "Your mail."
set theSubject to "Test!"
set theContent to "Testing!"
set theAttachmentFile to "Macintosh HD:Users:gp:Documents:Steve.jpg" -- To make it automatically.
tell application "Mail"
##Create the message.
set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent, visible:true}
##Let's configure the recipient.
tell theMessage to make new to recipient with properties {address:recipientAddress}
tell theMessage to make new attachment with properties {file name:theAttachmentFile as alias}
##Send the Message
send
end tell
There are two things that i'm struggling here,
-I can't just download the email owner from meraki, as when i tried it, it always downloads as testing <testing@testing.com> (and i just want the email).
-I need to find a way to directly download the CSV from Meraki, i tried with Automator but i can't log in on Meraki website with it.
Let me know what you think!
Thanks.