Assign notebook & tags when sending file to Evernote

Here's a script I found over on the Evernote for Mac forum that is proving to be extremely useful. It will assign a file to a notebook within Evernote and also apply tags.
tell application "Evernote"
activate
create note from file theFile notebook {"Notebook Name"} tags {"tag1", "tag 2", "tag 3", "tag 4"}
end tell
Enjoy...
tell application "Evernote"
activate
create note from file theFile notebook {"Notebook Name"} tags {"tag1", "tag 2", "tag 3", "tag 4"}
end tell
Enjoy...