Mail alerts

In Mail (OS 10.3.9) there is, of course, the little red indicator on the dock icon showing there is mail in your mailbox and how many messages are there. Nice to be able to just look down and know there's mail by seeing the little red dot. However, it doesn't show that indicator if you receive mail in a separate mailbox folder. Example, I have folders set up for various friends to keep them all organized. I can open the mail window and see that there are messages from those friends in their folders, but the icon on the dock doesn't have an indicator. Is there something I can set differently to change this? Sometimes I miss emails from friends because I don't see the indicator.
Not a huge deal, but an annoyance.
Thanks.

Hi Sam,
you have two choices here, either does exactly what you're looking for...
MailEnhancer: http://macupdate.com/info.php/id/13292
DockStar: http://www.ecamm.com/mac/dockstar/
cheers

Similar Messages

  • How can I turn off the New Mail alert on my iPod Touch?

    I have an iPod Touch (version 6.1.3). The other day I was waiting for an important e-mail, so I  turned on the New Mail alert. It worked fine. Now I want to turn it off, but  I can't. I went into Settings and then to Sounds and changed the selection from the sound I'd selected ("Bell") to None. It says "None" but every time I get a new e-mail, it still makes the bell sound.
    I also tried going into Notifications and then to New Mail Sound and setting it to "None" but that didn't change anything
    Any ideas what I'm missing?
    Thanks!

    Try removing the mail totally from your notifications center.
    I have everything turned off and the banner set to none.

  • How to send e-mail alert to the user job is successful or failed.

    Hi Experts,
    I have scheduled a job using DBMS_JOB Package; in this job I am calling a procedure.
    How can we send an e-mail(alert) to the user if the job is successful (or) job fails.
    If the job is successfully completed, then we have to send mail as “Job is completed successfully along with job name”.
    If the job fails we have to send email as “error message of the job along with job name”(why the job is failed).
    This alert should be sending automatically no manual intervention.
    Please help me.
         CREATE OR REPLACE PROCEDURE APPS_GLOBAL.arc_procedure (P_ID IN NUMBER)
         IS
         CURSOR C IS SELECT id,table_name,archive_table_name,where_condition
         FROM apps_global.control_ram
         WHERE id = p_id
         ORDER BY id, table_name;
         BEGIN
            FOR I IN C
            LOOP
               EXECUTE IMMEDIATE
                  'INSERT INTO '
               || I.ARCHIVE_TABLE_NAME
               || '
         (SELECT * FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || ')';
               EXECUTE IMMEDIATE
                  'DELETE FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || '';
               COMMIT;
            END LOOP;
         EXCEPTION
            WHEN OTHERS
            THEN
               ROLLBACK;
               DBMS_OUTPUT.PUT_LINE (
               'An error was encountered - ' || SQLCODE || ' -ERROR- ' || SQLERRM);
         END arc_procedure;
         /This is my job.
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'APPS.arc_procedure(1);'
       ,next_date => to_date('05/01/2013 00:00:00','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'TRUNC(SYSDATE+1)'
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    /Thanks in advance.

    Hi,
    I think you can do by creating mailing procedures and call it in the loop and outside the loop.
    There would be two procedure one in inside loop which will execute after successfull completion of the loop.
    Other would be in the exception block like i shown in the below code you have written;
    V_variable_1 you can use as a parameter for what is the error occured.
    like suppose your mailing procedure name is Status_email and Status_email_1.
    CREATE OR REPLACE PROCEDURE APPS_GLOBAL.arc_procedure (P_ID IN NUMBER)
         IS
         CURSOR C IS SELECT id,table_name,archive_table_name,where_condition
         FROM apps_global.control_ram
         WHERE id = p_id
         ORDER BY id, table_name;
    V_VARIABLE_1 NUMBER;
    V_VARIABLE_2 VARCHAR2(400);
         BEGIN
            FOR I IN C
            LOOP
               EXECUTE IMMEDIATE
                  'INSERT INTO '
               || I.ARCHIVE_TABLE_NAME
               || '
         (SELECT * FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || ')';
               EXECUTE IMMEDIATE
                  'DELETE FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || '';
               COMMIT;
                     STATUS_EMAIL;
            END LOOP;
         EXCEPTION OTHERS THEN
    V_VARIABLE_1 :=SQLCODE;
    V_VARIABLE_2 :=SQLERRM;
               ROLLBACK;
    STATUS_EMAIL_1(V_VARIABLE_1,V_VARIABLE_2);
         END arc_procedure;
         / You can refer to sample email procedure i have created for you.
    CREATE OR REPLACE PROCEDURE STATUS_EMAIL
    AS
       v_From       VARCHAR2(80) := 'EMAIL_ID';
       v_Recipient  VARCHAR2(80) := 'EMAIL_ID';
    --YOU CAN SEND EMAIL TO MORE THAT ONE USER SO YOU CAN USE LIKE BELOW VARIABLE....
       v_Recipienttt  VARCHAR2(80) := 'EMAIL_ID';
       v_Subject    VARCHAR2(80) := 'SUBJECT_FOR_THE_MAIL';
       v_Mail_Host  VARCHAR2(30) := 'MAIL_SERVERS_HOST_IP(SMTP_SERVER)';
       v_Mail_Conn  utl_smtp.Connection;
       crlf         VARCHAR2(2)  := chr(13)||chr(10);
    BEGIN
      v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host);
      utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
      utl_smtp.Mail(v_Mail_Conn, v_From);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipienttt);
    --OPEN DATA CONNNECTION
      UTL_SMTP.OPEN_DATA(v_mail_conn);
    --MAIL HEADER
      utl_smtp.write_DATA(v_Mail_Conn,'Date: '   || to_char(sysdate, 'DD-MON-YYYY hh:mi:ss AM') || crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'From: '   || v_From || crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Subject: '|| v_Subject || ||crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'To: '     || v_Recipient || crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Cc: '       || v_Recipienttt ||','|| crlf);
    --MAIL BODY
      utl_smtp.write_DATA(v_Mail_Conn,'MIME-Version: 1.0'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Type: multipart/mixed;'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,' boundary="-----SECBOUND"'|| crlf ||crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'-------SECBOUND'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Type: text/plain;'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Transfer_Encoding: 7bit'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Procedure is successfully complited without error'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
    utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Dear All, '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Procedure is successfully complited without error'||'.' ||crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Regards, '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'any_name '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_data(v_Mail_Conn, utl_tcp.CRLF ||'This mail is auto generated.');
      --CLOSE CONNECTION
      UTL_SMTP.CLOSE_DATA(v_mail_conn);
      utl_smtp.Quit(v_mail_conn);
    EXCEPTION
      WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
        raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;
    /cheers..

  • E-Mail alerts for queues in SMQ2

    Hi,
    In a asynchronous IDOC->ABAP Proxy scenario, some of the  messages are getting stucked in the transaction SMQ2 in PI system.This happens only when we send 100 IDOCs to PI at the same time and only 5-10 messages are getting stucked with status as "Running". The remaining messages are processed and send to the target system.
    I would like to know a solution to trigger an E-mail alert to a specific Mail id if any messages gets stuck in the queue for more than 5 minutes.
    Do we need to configure CCMS to achieve this? If so, please let me know the steps.
    Thanks and Regards,
    Sakthi

    Hi Just check for
    configure E-mail alerts
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2 By Aravindh Prasanna
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2
    XI : Configuring CCMS Monitoring for XI- Part I By Naveen Pandrangi
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i
    XI : GRMG Customizing for XI CCMS Heartbeat Monitoring Part II By Naveen Pandrangi
    /people/sap.user72/blog/2005/12/05/xi-grmg-customizing-for-xi-ccms-heartbeat-monitoring-part-ii
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3 by Aravindh Prasanna
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3
    Regards
    Abhishek

  • Sync issues with Google Calendar and e-mail alerts

    Hello,
    I'm experiencing a lot of problems with iCal while I'm trying to sync it with Google Calendar. I have correctly inserted my Google account information into iCal, but:
    when I create a new event and I disable the e-mail alert and save it, it automatically turns on the e-mail alert! Is there a way to disable by default all alerts? I have already tried to go to Settings - Advanced and select “Disable all alerts” with no result;
    all the events I create into iCal are correctly synced with Google Calendar and I can correctly read them on the web app, but in my android device they don't have the time information (they are listed as all-day events)

    GooSync would do the trick - http://www.goosync.com/
    Plz be aware that Goosync nor Google Contacts supports all field from your phone so it is not an 100% backup unfortunately
    JoranG

  • Mail Alert to Managing Director for every transaction for customer & vendor

    Dear Gurus,
    Please let me know how & where to do setting for mail alert to Managing Director for every transaction for customer & vendor,
    Like for Customer: Sales Order, PGI, Invoice, Payment receipt................
           for Vendor: Purchase Order, GR, Miro, Outgoing Payment for Vendor,
    Thanks in advance,
    Sai

    Hi Sai
    If you want to set the mail alert to Managing Director for every transaction for customer & vendor Like for Customer Sales Order, PGI, Invoice , PO  then maintain at  all levels  output type and at all levels for those output types  assign the authorization as Managing Director
    But for what purpose you want to assign the authorization member at all levels, what is your requirement?
    Regards
    Srinath

  • E-Mail Alerts/User Accounts

    Hi folks,
    Is it possible to configure an e-mail alert to the Admin team to flag up when a user has locked their account?
    Not interested in any automatic unlocking or anything of that nature.  Just a simple e-mail alert.
    Many thanks
    Paul

    Hi Paul, it should be a nice & easy one for them.  A couple of gotcha's to look out for:
    1. Lock codes - unless you really want to, don't report on admin lock codes otherwise you could have some fun and games when you have to do a mass lock...
    2. Only picking up locked ID's that were locked since the last run.  A few years back we had a program coded and the developer forgot this.  As a result we kept on getting lists of locked users that had been reported but had not requested their ID's to be unlocked yet.
    3. Being careful with the period of the report - can be a pain to keep getting stuff in your inbox unless it is really mission critical and you want to spend loads of time chasing users about.

  • E-Mail Alerts, Change SMTP Port

    I'm trying to set up e-mail alert notifications in Enterprise Manager. I have port 25 heavily used elsewhere, and I beleive this is preventing connection. I cannot conect to port 25 with the telnet test, but I can cannot to port 23. How do I change ports?
    Oracle Database 10.2.0.4

    The front end application (SmarTeam PDM) is using port 25 for it's workflow. I havn't tested yet with that service off. I'm just wondering why that server can connect to to SMTP, but the Oracle server cannot?HELP!
    I am easily confused.
    Please clarify how many different systems are involved in this discussion, by providing actual hostname & description of their function.
    Firewall rules can be such that System A is allowed to initiate a connection with System B using port #25
    This same firewall could be configured to prevent System B from initiating a connection on port #25 with System A.
    Please clarify the originating system, the terminating system & the port being used/attempted.
    I still suspect internal Firewall rules are getting in your way

  • E-mail alerts not working properly

    I have a problem with my Tour which has put me in some awkward situations- like in court and work meeting- not good.
    The e-mail alert makes an audible noise even when the setting is programmed for silent. My original Tour worked fine at first, and after about 3 weeks the problem appeared. Verizon replaced the phone and now the replacement worked fine at first and is now messing up after about 3 weeks.
    I need a fix for this problem. I saw someone else described the same problem on the Storm forum. It appears it might be a software issue.

    "Normal" is what you set it to be (with or without email alerts, etc). Loud and Silent should be evident as well.
    I still think you have some setting to override the silent profile for something.
    If you look at the Silent profile and check the email settings for volume, etc., everything is set to off or mute or whatever would be appropiriate for "silent'?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • E-Mail Alerts / Forum

    Hello,
    I've set specific e-mail address (the Address of Moderator)  to be notified if a question has gone unanswered in the forums for a given period of time.
    You can see teh procedure in this link (help)
    http://help.sap.com/saphelp_nw04/helpdata/en/44/93cd4496b610bbe10000000a422035/frameset.htm
    Unfortunately this setting has any function, and i didn't get any Email, while a question has gone unanswered in the forum for a period of time(in my case 1 hour).
    Has somebody any experience with that?
    Thanks and best regards

    Hi Katayoun,
    You can see this topic “Setting E-Mail Alerts” from SAP Library:
    http://help.sap.com/saphelp_nw04/helpdata/en/44/a1baf02bc3340ce10000000a155369/frameset.htm
    Hope this link will be helpful for you.
    Regards,
    Lubi

  • E-mail alerts - how do I?

    Hi,
    I'm wanting to send out an e-mail alert for one of my iCal events. It is something I think will be very useful to do automatically. The docs are so limited, I'm wondering if iCal is as limited as what's listed when searching help.
    I'm just starting to get into iCal and hope it can make my scheduling complete.
    1) I want to know how to get the program to know my address. My own info is already in my address book but it says I need to add myself there. Confusing how to set that up.
    2) How to have an e-mail alert sent to people through e-mail to get their work to me by a certain date -- a reminder to them.
    If iCal does NOT do these things, I would appreciate knowing so I could look to other applications to handle these actions. And suggestions for that would be very welcome as well.
    Thanks!
    Still on Tiger with iCal Version 2.0.5 (1069)

    1) go to Address Book, select your contact card, make sure you have the right info there, and make sure the first email listed is the one you would like people to use when accepting your invitations from ical, then while your contact card is still selected go to card>make this my card, which will make your card "my card" so that ical knows which card is yours and which email to use.
    2) in ical, double click on a day in week view, this will create a new event, then double click on that new event, this will bring you in edit mode so you can start adding info to that new event. you will notice an attendee field, add the attendees there - they should all be entered as contacts in your Address Book so it is easier to add them to an event, rather than adding manually every time, make sure you enter data in all the other fields. in the note field i would suggest you add info telling the attendees when to get their work back to you or by which date... then when done editing click the done button, the event will exit edit mode and an email will be sent to all the attendees. additionally, you will notice that an alarm can be set, so set up an alarm as an email and address it to one of your emails, minutes/hours/days before the event, that way an email will be sent to you reminding you of the event. once you receive this reminder in your inbox, you can forward that email to the attendees. to make it easy to forward to your attendees, i would create a group in your Address Book and add all the attendees to that group - file>new group, name the group then save and then drag and drop each attendee card to that group - so that way when forwarding, in the to field of the email you will just select the group and click send.
    hope this helps

  • E-mail Alerts have stopped

    Something has happened on our server and we are no longer receiving e-mail alerts of any kind. Can someone point me in a direction so I can let the IT consultant fix the issue? Thank You

    Hi Jim,
    Start with checking the services to see if tyhe SBO mailer is running. If yes check the definition of the alerts so that they are still defined to send email. ALso chech the outbox in B1 to see if there are mails not sent.
    Further, check with your IT guys that the name or IP of the SMTP server has not changed.
    I hope it helps,
    Jesper

  • E-mail alerts in planning & essbase log

    Hi All,
    1).How to get the e-mail alerts in planning .
    2).where can we find in detail log file in Essbase.
    Bunny

    Hi,
    To set up e-mail for workflow notification.
    In planning - Administration > Application Settings
    Under System Settings in the E-mail Server box - enter the smtp server information.
    essbase.log will be in arborpath directory e.g. C:\hyperion\AnalyticServices\essbase.log
    Also there is a log file for each application. e.g. C:\hyperion\AnalyticServices\app\Sample\Sample.log
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Incoming messages - E-Mail Alerts for Application Errors?

    Dear C4C Community,
    We are integrating C4C and our SAP ERP. Sometimes the business partner replication is not working due to unmapped entries or due to other reasons. Currently we are checking the web service message monitor manually for incoming message with status "Application Error".
    Is there any way to setup an automatic e-mail alert when new incoming message errors appear? I do not like the manual monitoring process.
    Looking forward to your feedback.
    Best Regards
    Matthias

    Hello Matthias,
    Try checking the below questions in your project scope.
    Hope this should help you achieve what you want.
    Regards,
    Chandan

  • Different e-mail alerts for different contacts

    Can I have only certain e-mails alert me with a tone and let all others remain silent in iOS5? I use my phone for work and want to assign e-mails from specific people to audibly alert me and let all the rest remain silent so I'm not bothered by unimportant e-mails. My old Blackberry let me do this for years but so far can't get my iPhone to do it. Is this available with iOS5?

    How to create custom notification tones in iOS 5
    Users of iOS 5 for iPhone, iPad and iPod touch devices can create free custom notification tones
    http://www.pcworld.idg.com.au/article/404445/how_create_custom_notification_tone s_ios_5/

  • E-mail alert for sales managers.

    Dear all,
    We are using SAP CRM 6.0. I was configuring e-mail alert for the managers whenever a transaction is created in crm. The mail is delvering but iam not able to send the object id and transaction category. Please help.

    I have the same problem!
    I bought this phone specifically for this feature and I can't for the life of me get any alert for my Yahoo mail account.
    I've downloaded the Yahoo App from the Nokia store and have checked the "activate e-mail alerts" box and that doesn't work.
    I've logged into my Yahoo account and tried to connect it that way but there are no options to do so.
    I've followed the link on the Yahoo site where they have sent a link to me via text to sync it that way and no joy.
    Aaahhhh, its driving me crazy!!!!!
    Please help!!!!!!!

Maybe you are looking for

  • Photoshop CC crashes all the time under Mac OS 10.6.8

    macbook pro  10 6 8 photoshop cc crashes on start up.help! Hardware Overview:   Model Name:          MacBook Pro   Model Identifier:          MacBookPro7,1   Processor Name:          Intel Core 2 Duo   Processor Speed:          2.4 GHz   Number Of Pr

  • Error in deploying JDBC driver

    Hi All while deploying JDBC driver i am following tthis guide https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f04ce027-934d-2a10-5a8f-fa0b1ed4d88f while i run the command  C:>drivertool add aii_af_jmsproviderlib.sda msbase.jar mss

  • How can I get numbers purchased for my ipad onto my mac air?

    I have numbers on my iphone and ipad. I just purchased a new mac air and I want to use the app on it without paying for it again. How do I do this?

  • Urgent help in multiple table update query

    TABLE1 NAME RATE TABLE2 NAME RATE1 DATE1 NAME RATE2 DATE2 NAME RATE3 DATE3 Can anyone help me to write a query which can update RATE in TABLE1 based on following criteria ? We have same column 'NAME' in both the tables. First Find maximum Date from t

  • How to show my campus name in iTunes U category named "Universities & Colleges"/"Beyond Campus"/"K-12"?

    I'm not sure how to appear my campus to this list. I think our campus should occur in "Universities & Colleges". But all the 3 categories don't include my campus. See, Is there any setting in PSM? anybody know how? My campus site provider page is at,