Per questo motivo ho creato uno script mediante cui, una volta aggiunto, è possibile selezionare uno o più file tramite il finder, premere il tasto destro del mouse e trovare sotto la voce Automator -> Invia tramite Mail.
Quello che bisogna fare sono i seguenti passi:
Aprire Automator
Creare un nuovo Script ad Hoc
Incollare il seguente script :
on run {input, parameters}
tell application "Mail"
set new_message to make new outgoing message with properties {visible:true}
repeat with theItem in input
set selectedItem to (theItem)
tell content of new_message
make new attachment with properties {file name:selectedItem} at after last paragraph
end tell
end repeat
end tell
return input
end run
Scegliere dal menù Archivio->Registra come plugin
Inserire come nome : Invia come allegato di posta elettronica
Scegliere nella combobox "Plugin in" la voce : Finder.
Adesso avrete questa funzionalità anche con Mac Os X.
Nessun commento:
Posta un commento