[ANSWERED]Can you add attachments to indigo Send Mail?

Posted on
Tue Feb 17, 2015 8:24 am
ryanbuckner offline
Posts: 1080
Joined: Oct 08, 2011
Location: Northern Virginia

[ANSWERED]Can you add attachments to indigo Send Mail?

Is there Applescript support for attachments in Indigo emails?

I don't want to launch the mail app, just attach an email to the existing script:

Code: Select all
-- these variables are modified elsewhere in the script
set eb to "this is the body of my email"
set acStatus to "success"

property emailAddress : "emailaddress@gmail.com"
property emailSubject : "Your Automated Submission"
property newline : ASCII character (10)

-- I was to add an email attachment here
tell application "IndigoServer"
   set emailBody to eb
   send email to emailAddress with subject emailSubject with body emailBody
   send email to "phonenumber@txt.att.net" with subject "Automated AC" with body acStatus
end tell

Posted on
Tue Feb 17, 2015 9:56 am
richo offline
Posts: 158
Joined: Nov 25, 2014
Location: Pomorskie, Poland

Re: Can you add attachments to indigo Send Mail?

As far as I know Indigo mail doesn't support attachments but you can use attachment with standard mail app that you can call from a script.


Sent using Tapatalk

Ryszard

Posted on
Tue Feb 17, 2015 12:10 pm
ryanbuckner offline
Posts: 1080
Joined: Oct 08, 2011
Location: Northern Virginia

Re: Can you add attachments to indigo Send Mail?

Thanks. I wound up using the Messages app to send the file instead of email.

Code: Select all
tell application "Messages"
   set screenFile to (path to desktop as text) & "test.png"
   set myid to get id of first service
   set theBuddy to buddy "myBuddy" of service id myid
   send file screenFile to theBuddy
end tell

Posted on
Tue Feb 17, 2015 10:42 pm
jay (support) offline
Site Admin
User avatar
Posts: 18221
Joined: Mar 19, 2008
Location: Austin, Texas

Re: [ANSWERED]Can you add attachments to indigo Send Mail?

Just to round this thread up - no, Indigo's built-in mail sending does not support attachments.

Jay (Indigo Support)
Twitter | Facebook | LinkedIn

Posted on
Wed Feb 18, 2015 9:18 pm
ryanbuckner offline
Posts: 1080
Joined: Oct 08, 2011
Location: Northern Virginia

Re: [ANSWERED]Can you add attachments to indigo Send Mail?

Thanks Jay... I can stop searching

Page 1 of 1

Who is online

Users browsing this forum: No registered users and 30 guests