Send a message at a certain time

Where do I set up iMail to send a message at a certain time. Outlook has this feature but for some reason I can't find it in iMail
I have about 30 projects running at one time. All of them needing customer approval. What I need is to work on project throughout the day and send a the PDF proof at 4:55. If I send a proof earlier, customers will call and bombarded me with changes on their proof. leaving me no time to work towards finishing other customers art.

Hello Kyle.
The Mail.app does not include this feature but there is a collection of AppleScripts called Mail Scripts which can be downloaded at this link.
http://homepage.mac.com/aamann/Mail_Scripts.html
The script to use from the collection of Scripts is Schedule Delivery (Mail) which allows you to send individual messages at predefined times (this script uses iCal for scheduling message delivery).

Similar Messages

  • I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer.?

    I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer in case it wipes everything .

    I have the exact same problem. I have not changed anything. This is probably a bug or something that has gone bad with Mac OS X (10.7.2). I have not found any solution for this on the web.
    MacBook Pro, Mac OS X (10.7.2).

  • Enforce to send the messages pending, after the Time To Deliver is changed

    JMS Queue is being used to send data from our database to the headquarters’ database.
              Our organization considers using "Time To Deliver Override" during the scheduled downtime of the headquarters’ database. For example, when our admin is informed by the headquarters' admin that downtime is scheduled, our admin can change "Time To Deliver Override" from -1 to 1200000 (20 hrs) in WebLogic Consol. Then, when the database is back, our admin will reset the value to -1.
              It is simple and quick. However, I realized that the messages pending will not processed for the “Time To Deliver” which was configured when the message was added.
              Can WebLogic enforce to send the messages pending, after the "Time To Deliver Override" is changed back to -1?

    A few related points:
              - I think 9.x may provide mbean/JMX/administrative options to change time-to-deliver in existing messages - but, even if it does, this seems unwieldy.
              - 9.x also provides options for adminstratrively pausing delivery of a destinations messages, and/or pausing MDBs.
              - I think the "time-to-deliver override" also supports setting absolute times via cron like schedules (eg - you can configure it so messages are born at a specific time.)
              - Another option is to introduce an intermediate destination and configure a "messaging bridge" to forward messages between them. When messaging needs to be pause, administratively stop the bridge.
              Tom

  • Automate sending e-mail at a certain time?

    I would like to send out a form e-mail automatically at a certain time on Tue, Thur and Fridays to the same recipient. I can't seem to find an easy way to do this and I am not very good with Apple Script. I looked through Automator but didn't see anything.
    Anyone have a simple solution?
    Ron

    What are you trying?
    When you Save As Plugin for iCal alarm, you can choose which calendar to attach the event to in iCal.
    If you have further questions, you should post them in a new topic with details.

  • Will it ever be possible to send SMS messages at a future time using Siri?

    As Siri can set reminders and make appointments for the diary, as well as being able to write messages and emails, will Siri ever be able to do both and write messages at a future time?
    For example, "At 5:00pm, tell Kay to put the bin out". 
    Would this be possible and would there ever be a need for something like this?
    Also when will Siri be able to find resturants and businesses in the UK as at the moment only US ones can be found.

    Nobody here knows what Apple may or may not do...
    You can leave Feedback for Apple using this Link...
    http://www.apple.com/feedback/

  • Can I send an email at a certain time?

    II would like to send an email tomorrow at 2pm but I want to write it now. Is there a way to schedule it?

    Fraky,
    One approach would be to use both your Mac's Automator program and iCal.
    Under Automator's Mail library, try using these two Actions:
    1) *New Mail Message* -- complete the address field(s) and compose your message in the box provided. Since you'll want to run the workflow without user interaction, leave the Options unchecked.
    2) *Send Outgoing Messages*
    From Automator's File menu, save the workflow as an application.
    Open iCal and schedule your New Event with the alarm feature set to open a file, in this case the file being your saved Automator application. Hope this helps.
    Regards, Andrew99

  • How can i do the server send a message in a particular time?

    Hi everyone!
    in my program, clients choose a number from 1 to 10 and send it to the server.
    server produces a number every 5 min and send the client the result (if they
    win or lose) immediately.
    i 'd like to convert this, in order the result to be sent from the server to client when the time(5min) is finished - just before a second draw occurs.
    so the clients must wait to be notified by the server and disconnected when
    the server sends the result.
    can anyone help me on how to convert this piece of code to do that task?
    // control thread's execution
          public void run()
             int message=0;
             Timer timer = new Timer();
             TimerTask task = new TimerTask(){
                public void run() {               
                   rnum=randGen.nextInt(10);
            display.append( "\n"+ "THE MAGIC NUMBER IS: " + rnum );
         timer.scheduleAtFixedRate(task, 100, 30000) ;
    // process connection
             try {
                // read message from client
                do {
                   try {
                      message =  input.readInt();
                      if (message==rnum){output.writeUTF("SERVER>>> YOU WON: MAGIC NUMBER IS: " +rnum);}
                       else {output.writeUTF("SERVER>>> YOU LOSE: MAGIC NUMBER IS: " +rnum);}
                      display.append( "\n\n" +"PLAYER " + clientNumber + " SELECTED NUMBER " + message );
                      display.setCaretPosition( display.getText().length() );
                   // process problems reading from client
                   catch ( IOException ioException ) {
                      display.append( "\nUnknown object type received" );
                } while ( message!=-1 ); //temporary
        

    Do you not have a Sent Items folder of some description? 
    Search using Spotlight (little magnifying glass in the top right of your screen), that may be able to help.

  • How to send automatic "reminder mails" after certain time

    Hi Experts,
    There is a problem which I am not able to solve, Please help !
    Requirement: 1. After the creation of a certain task, a mail should go to the user... this I have done using the Java Mail API.
    *2. After 2 days if the user don perform certain task, a reminder mail should be send to him EVERYDAY after the INITIAL 2 days.*
    how to achieve this in the Java mail.. I have heard of Java mail Schedulers but I am not able to find it.. If you can give me some guide or some steps or some article for this I would be very very gratefu to you.
    Please treat it as urgent and give your valuable suggestions.
    Thanx in advance.
    Regards,
    Rajat

    Nope. It means that if you want to schedule something, use code which does scheduling. Like Quartz for example. Bear in mind that the "something" in this case would involve sending an e-mail, but your scheduler wouldn't care about that.

  • Can I send a message at a specific time?

    I would like to set a time for a message or messages to be sent. Is there any way to do this?

    use this simply script
    http://www.versiontracker.com/dyn/moreinfo/macosx/16217
    bye

  • Sending Messages at a Specific Time?

    Does anyone know if there's a way to keep outgoing messages in your Outbox and not send them immeadietly without Saving for Later?
    Sometimes I'll write an email late at night, but don't want it to send until say 8 a.m. Is there a way to set the message not to send until then or to tell the outbox to send mail at a specific time?
    Perhaps a way to set Automator to send the messages at a speciifc time?
    MacPro   Mac OS X (10.4.8)  

    I laughed because I found the Mail Scripts, and was just about to reply, when I saw that you had posted the answer already, Austin! I'm glad I know about those scripts--they'd be useful for many people who use Mail.
    Well, there you go, bdiesel, question fully answered!
    All the best.
    Power Mac G5 1.8GHz DP, 1.5GB RAM   Mac OS X (10.4.8)  

  • Unable to send PIN Messages

    I am unable to send PIN messages, once upon a time they worked for about two days, and no longer do.  I am able to recieve PINs.
    Steps take to resolve this:
    Registered w/ AT&T BIS.
    Resent Peer to Peer encryption key via Blackberry Enterprise Manager (other users are able to send/recieve PIN's just fine)
    Resent Service Books (*shrug*)
    Stil no dice.  Thoughts and suggestions appreciated.
    Thanks.

    Welcme to the Frums!
    Try removing your battery. Replace after 30 seconds - allowing your phone to reboot. 
    Nurse-Berry
    Follow NurseBerry08 on Twitter

  • Why do I keep getting messanger is not working and wont send my messages

    My droid phone is not sending my messages all of the time. IT says unfortunately our messenger is no longer working and throws me out of the messenger.  This is very frustrating.  What is going on

    Make sure cellular data is turned on. Try sending again.
    You did not say what droid you have, however if you had a kitty Kat update the messaging may have been screwed up.
    Good Luck

  • Won't send a message

    Heey,
    Sometimes when I want to send a message to someone,
    I type it, send it and he wouldn't send the message eventhough I am connected to a working wifi network.
    Why wouldn't he send my message?!
    Most times it works, but sometimes not.
    Help me :(
    Ewout Heijbroek

    iOS: Troubleshooting Messages

  • CAN ANYONE HELP ME?! I have just recently upgraded to ios 5 and it works fin the first 3 weeks bu suddenly i cannot send a text to a certain contact all o the sudden. It always say message sent failed. PLEASE HELP ME!

    I have recently upgraded to ios 5 and it worked fijne in the first 3 weeks. But suddenly i could not send a text to a certain contact, when i sed a text it aways say message send failure.
    PLEASE HELP ME!!

    shegoure wrote:
    I have resetted my iphone numerouse times and like its a quick fix..
    What happens if i reset my iphone?
    Hi, Sorry, have edited my first post to you as I misread your question...
    A reset is like a reboot on a computer...  You will not lose any Data...
    Resetting your phone:
    Press the sleep/wake button & home button at the same time, keep pressing until you see the Apple logo, then release the buttons...
    iPhone Reset
    http://support.apple.com/kb/ht1430

  • TS3899 Tried all the tips on line. Every time I try to send an e-mail, it gives me this message, "A copy has been placed in your Outbox. Sending the message content to the server failed" Any help in how to resolve would be appreciated

    I went through all the steps to try to resolve getting the message in a box every time i try to send an e-mail. What next ?
    Message is " A copy has been placed in your
                        Outbox. Sending the message content to the server failed."
    Any assistance would be greatly appreciated. My internet works fine as I can send e-mails from my Yahoo account on my MAC no problem.
    Address is fine etc.

    How long has it been going on? I've had my yahoo mess up and if i wait a bit it resolves itself. Yahoo is doing something with their servers and it messes with your mail if your mail happens to be on one of those servers.

Maybe you are looking for