Skip to content

Instantly share code, notes, and snippets.

View mariogt's full-sized avatar
:octocat:
Working from deep sea

MarioGT mariogt

:octocat:
Working from deep sea
View GitHub Profile
#!/usr/bin/python
# Copyright (c) 2017 University of Utah Student Computing Labs. ################
# All Rights Reserved.
#
# Permission to use, copy, modify, and distribute this software and
# its documentation for any purpose and without fee is hereby granted,
# provided that the above copyright notice appears in all copies and
# that both that copyright notice and this permission notice appear
# in supporting documentation, and that the name of The University
@mariogt
mariogt / gist:c82bfbd1440b12e338fdf2beae0d532b
Created September 23, 2019 11:27 — forked from Moligaloo/gist:3850710
Send mail with attachment and signature via AppleScript in OS X
tell application "Mail"
set theSubject to "Subject" -- the subject
set theContent to "Content" -- the content
set theAddress to "[email protected]" -- the receiver
set theSignatureName to "signature_name"-- the signature name
set theAttachmentFile to "Macintosh HD:Users:moligaloo:Downloads:attachment.pdf" -- the attachment path
set msg to make new outgoing message with properties {subject: theSubject, content: theContent, visible:true}