Hi Egídio, I see no way to reuse your drafts as canned messages. You could use Gmail's canned response lab feature, but it doesn't support attachments.
Another solution: You could use a simple applescript to create new messages with attachments: 1) Create an empty folder for your canned response 2) Put the attachment files into this folder 3) Open AppleScript Editor and paste this sample script and save the script in the folder you created above. *tell* *application* "Mailplane" *set* m *to* *make* new *outgoing message* *tell* m *set* sender *to* "[email protected]" *set* r *to* *make* new *to recipient* at *end* *tell* r *set* address *to* "[email protected]" *set* name *to* "Ruben" *end* *tell* *set* subject *to* "test subject" *set* content *to* "This is the body text!" *make* new *mail attachment* with properties {path:"Macintosh HD:Users:ruben:Pictures:china.png"} *end* *tell* *compose* m *end* *tell* * * 4) Change sender, address, subject, content and the mail attachment path. *set* subject *to* "test subject" *set* content *to* "This is the body text!" 5) Optional: Add more attachment lines to attach more files: *make* new *mail attachment* with properties {path:"Macintosh HD:Users:ruben:Pictures:china.png"} *end* *tell* * * 6) Run the script to create a new mail message w/ attachments. Hope this helps. On Sat, Aug 7, 2010 at 7:34 PM, Egídio <[email protected]> wrote: > Hi. > > I have a few canned messages that contain some attachments. I keep > those messages in my Drafts folder. For example, one folder might > contain 5 attachments. Whenever I'm composing or replying to a > message, sometimes I need to attach just one of those files saved in > the Drafts folder. Is there a way to just click and drag the > attachment I want and attach it to the new message? I do not need to > use the entire message in the Drafts folder; I just need one of its > files. Presently, when I need to attach one of those files, I click > on the saved draft and the attachment gets downloaded to my HD. I'd > prefer not to have that happen. All I want and need is to have the > file attached to my reply. > > If my question is not clear, I'll be glad to elaborate on it some > more. > > Egídio > > -- > You received this message because you are subscribed to the Google Groups > "mailplaneapp" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<mailplaneapp%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/mailplaneapp?hl=en. > > Ruben Bakker // uncomplex gmbh // Switzerland // mailplaneapp.com // twitter <http://www.twitter.com/Mailplane> -- You received this message because you are subscribed to the Google Groups "mailplaneapp" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mailplaneapp?hl=en.
