Not receiving emails when assigning a user a task

Hello friends,
I am attempting to figure out what I am missing in my configuration here...
I have a SP2013 site where I added the out of the box task application. When I go to assign a task to an end user, the end user never receives an email informing them that a task has been assigned.
I believe email is setup correctly because when the site is shared with the same end users an email is sent / received informing the end user they have been granted access to the site in question...
any thoughts on what I have misconfigured?
thank you in advance

Hi,
As for the incoming settings, not all lists support incoming emails. You could go to Document library settings and see if incoming email setting exist under Communication.
I’d like to collect more information about the issue. What OOB task application are you using? Did you mean OOB workflow on SharePoint 2010 platform? Does the alert work for the list?
Please confirm the following for the issue workflow:
In the start options, try checking Creating a new item will start this workflow.
In the Approvers box, try only adding one user with mailbox enabled.
In the Request box, type “Request for the list”
Regards,
Rebecca Tu
TechNet Community Support

Similar Messages

  • When I had my old blackberry connected to my computer, all incoming emails were routed to my outlook so I did not get mails on my blackberry.  How do I get it so my iphone4 does not receive emails when connected to my computer?

    I am getting my iphone inbox bombarded so would like it to not receive emails when connected to my computer.  My old blackberry had an app that took care of this which worked really well.  Am wondering if I can do the same with my iphone4.

    Blackberries were/are able to do that with some types of e-mail accounts because the mail is routed to an intermediary (BlackBerry Service).
    There is no equivalent for the iPhone as the phone communicates directly with the mail servers and does not go through a 3rd party.

  • My Iphone 4 will not receive email when connected to wifi,works fine on 3G

    My Iphone will not receive emails when connected to wifi,works perfect on 3G

    Arrr I have this prob to and this has been driving me made i thought it was a network area have changed providers brought different sim cards to get new numbers deleted everything off my iphone to reset it and still no luck..
    After reading your comment it has actually been since I have updated my phone.
    I have to turn off my phone everyday as I fly and i need to recieve messages when my phone is turned on if this isnt resolved quickly I am going to have to switch from Apple but I dont want to...
    Apple can you please advise if this is going to be sorted asap? Alot of people dont turn there phones off all of the time so wont notice however for those of us that do and have to this is a really HUGE ERROR that needs your QUICKEST ATTENTION !
    Thanks ;-D

  • Not receiving email when sending large number of records using a FM?

    Hi..
    I am using the function module " SO_DOCUMENT_SEND_API1 " to send email....
    When a single record is there.. or around 5-6 records are there... email is coming successfully...
    But when there are more records..say around 100, the email is not coming... I checked SOST transaction and the status there is in red..and the error message is " Internal error: SO_OBJECT_MIME_GET Exception: 2 ".........
    What could be the reason behind this problem....... ??
    I have another problem... my output has over 60 fields, but in the email which i am receiving has only around 10 fields... how to solve this problem...??
    Plz help...

    Well... right now i am tryin to get only the first 2 fields.. but even in this case... i am not getting the email if around 15 records are there......
    I am using the code which is given below which i found in SDN only......In this code.. data is getting selected from EKPO... i tried changing the number of rows getting selected.. and in this case, the attachement is coming as desired... but when i use the same code for my prog.. i am not getting the mail.. even if there are only 10 records or so...
    *& Report  ZT062108   ALV Header                                    *
    REPORT  zt062108.
    TABLES: ekko.
    PARAMETERS: p_email   TYPE somlreci1-receiver
                                      DEFAULT '<give email here>'.
    TYPES: BEGIN OF t_ekpo,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
          wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
      ebeln(10) TYPE c,
      ebelp(5)  TYPE c,
      aedat(8)  TYPE c,
      matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            w_cnt TYPE i,
            w_sent_all(1) TYPE c,
            w_doc_data LIKE sodocchgi1,
            gd_error    TYPE sy-subrc,
            gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
    *   Retrieve sample data from table ekpo
      PERFORM data_retrieval.
    *   Populate table with detaisl to be entered into .xls file
      PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    * Populate message body text
      perform populate_email_message_body.
    * Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_message
                                          it_attach
                                    using p_email
                                          'Example .xls documnet attachment'
                                          'TXT'
                                          'filename'
                                 changing gd_error
                                          gd_reciever.
    *   Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    *&      Form  DATA_RETRIEVAL
    *       Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp aedat matnr
       UP TO 1000 ROWS
        FROM ekpo
        INTO TABLE it_ekpo.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_XLS_DATA_TABLE
    *       Build data table for .xls document
    FORM build_xls_data_table.
    *  CONSTANTS: con_cret TYPE x VALUE '0D'.  "OK for non Unicode
    *             con_tab TYPE x VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    constants:
        con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
        con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
             INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      LOOP AT it_ekpo INTO wa_charekpo.
        CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
                    wa_charekpo-aedat wa_charekpo-matnr
               INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
    *       Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    * Fill the document data.
      w_doc_data-doc_size = 1.
    * Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    * Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    * Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    * Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    * Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
    * Populate zerror return code
      ld_error = sy-subrc.
    * Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
    *       Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
    *        Populate message body text
    form populate_email_message_body.
      REFRESH it_message.
      it_message = 'Please find attached a list test ekpo records'.
      APPEND it_message.
    endform.                    " POPULATE_EMAIL_MESSAGE_BODY

  • OWA is not receiving emails // SBS 2003

    Hi Guys!
    I have a following problem on my SBS 2003 Server, I do not receive emails when I access my mailbox with Outlook Web Access from home or any remote location. But if the outlook on my workstation is left on it is ok, mails are popping up right away on the
    OWA too.
    It was working great for me for many years.
    I looked over the internet but nothing seemed to help yet...
    I deleted and then created new .ost file, I have cashed mode switched off, I deleted forwarding rule that I had to my private account.
    Do you have any ideas what might cause this?
    Any help would be appreciated!

    Most interesting. From the sound of it your Outlook is somehow set to trigger the release of mail into the Exchange server, which I have never seen. Whether SMTP or POP3, mail should arrive at the Server and OL or OWA are just "windows" or "periscopes" to
    allow viewing.  Is it possible that your Outlook is popping for the mail and the default mailbox is the Exchange server? 
    For your home copy of OL, consider Outlook Anywhere instead of VPN.  VPN's are old school and expose your business network to any nastiness that creeps into your remote systems.  You will find instructions on the RWW landing page.
    For SMTP... you should have a static IP at the office, forward port 25 from your edge device/firewall/router to the ip of your SBS, then change your MX record at your public DNS host to point to your public IP (some use A records for the IP and the
    MX points to the A record, some use IP numbers, check with your DNS host), then run the CEICW wizard specifying SMTP mail.
    As for mail getting lost or something going wrong.... yes it can.  But so can POP3.  Historically there have been more issues with POP3 than SMTP.  Consider that only the smallest of the organizations would use POP3, that every business larger
    than those in the SBS space uses SMTP and you get the idea.  SMTP is "store and forward", meaning if your system is off line for some little time the mail will still come.  Usually it will not be returned to sender for about 48 hours, which is sufficient
    time to get the SBS back on line or to change the MX record back until it is.  There are also web services that will act as backup mail servers and hold your mail, some that will allow "Web Mail" access to it, and some that will do both and are very low
    cost or even free.
    Larry Struckmeyer[MVP] If your question is answered please mark the response as the answer so that others can benefit.

  • User not receiving email / corrupt database?

    Much like another recent post, I have a user that can not receive email the emails just sit in the queue.
    The error on those messages is "[[email protected]]: temporary failure"
    Here are the twists:
    1) We had a power spike a couple of days ago. The user's UPS failed and his machine lost power completely. He rebooted and everything else was fine, but he has not received an e-mail since then.
    2) When looking at the list of users on the Server Admin > Mail > Maintenance > Accounts screen, the list in the database stops at the person BEFORE this particular user. They're alphabetical, obviously, so everyone after this person are not listed at all - 13 total missing accounts.
    The kicker is that the rest of us are still receiving e-mail normally!
    Thoughts?!
    Details:
    Mac Xserve running 10.4.11
    Dual 2GHz, and 2GB RAM
    Keep in mind I am NOT a born tech person, have a mild to moderate comfort level with a command-line prompt, and no native intuition for any of this.
    Thanks!
    -Rita

    I'm the consultant that fixed MNX04's server, but it took several attempts.
    the Cyrus reconstruct command failed to resolve the issue, and even removing the user using cyradm, and re-creating them in Workgroup manager didn't fix the problem.
    Pterobyte's mailbfr utility did the trick: mailbfr -f, wait awhile for the repair to run, and all was well.
    I'm grateful for all the help pterobyte has given to people on this forum, but it concerns me a little bit that the Cyrus utilities built in to OS X server can't fix this sort of problem. (However, this is the first time I've run into a problem with OS X mail servers that the Cyrus reconstruct command couldn't fix.)

  • Users are not receiving Email Receipts

    Hello,
    Our issues seem similar with previous discussions regarding email receipts. We have 2 types of users: Those who submit their own data, and those who submit data on behalf of others. Both user types are inconsistently receiving email receipts. For example, a user submitted data on behalf of 10 individuals, but only received email receipts for 5 of those individuals. We have been unable to determine why this person would only receive some of the receipts, and not all. We have verified the emails are not in a trash or spam folder, and we have also verified the forms were completed and submitted.
    Below is an attached screenshot with our Email Receipt setup. Thank you for your time.

    Hi Lucia,
    The user who is submitting information on behalf of other users is only entering their email address once. For example, this user submitted data for 5 people within a 20 minute timespan and received email receipts for all 5 submissions (she is using her email address as the email address of record). She then submitted data for another 5 people in the following 15 minutes and did not receive a single email receipt. There is no difference in the data submitted; she should have received email receipts for all 10 individuals.
    There is also the issue of those who submit their own data and do not receive email receipts.
    Thank you.

  • User not receiving emails regarding approval notifications

    Hi,
    SRM system has been upgraded to 5.0.
    User is not receiving emails regarding Approval notifications. However, the user is able to view the SCs pending for his approval in his approval list.
    I checked the transmission of the emails, the approval notifications are sucessfuly sent and the email of the user is correctly maintained. I tried resending the emails, and the user didnt receive emails even then.
    Could be please advice what could the error.
    Thanks
    Hemanth

    Hello Hemanth Kumar,
    If approval mail:
    - is correctly generated,
    - you can see it in SOST transaction,
    - request status in SOST is OK,
    this means SAPconnect is working fine, so your problem does not come from SAP.
    You have to check your STMP gateaway and your mail server.
    Regards.
    Laurent.

  • User not receiving Email

    I have a user that can not receive email the emails just sit in the queue.
    The error I see is DBERROR: error fetching user.user: cyrusdb error
    I have ran mailbfr -m twice and restarted the server with no success.
    What is the next step.

    The next step would be to reconstruct the entire cyrus database using mailbfr -f
    It will take a while and you will loose read/unread flags.

  • My iphone is not receiving emails even when I try to manually upday.  I sent myself an email at 8:43am and still haven'y received it on my iphone at 9:13am.  Any suggestions?

    My iphone is not receiving emails even when I try to manually update.  I sent myself an email at 8:43am and still haven'y received it on my iphone at 9:13am. Any suggestions?

    delete your mail account and add again your own then try. if it doesnt work reset the phone and start as an new phone

  • User Group is not receiving email Sharepoint 2013 & Nintex workflow

    Hi I created circular workflow using nintex and sharepoint 2013 , now problem occur that User group did not receive email notification through web portal , sending individual email address working fine but user group is not receiving
    any email, not a single group is working now , to clear we used same workflow since last two years and all group received email earlier but now we are facing this issue since last 3 weeks. to resolve this we create new test groups and test but enable
    to send.
    looking for support to resolve this issue
    Regards

    This actually sounds like a problem that should be discussed on the Nintex forums, can you try over there?
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • How do I receive emails when I am not on WiFi

    I recently purchased a Galaxy Note 2.  I am unable to receive emails when I am not connected to Wifi.  I spent a couple hours on the phone with the tech from Verizon Help Desk and the gal I spoke with tried everything to help me and I still cannot get my emails on 2 different accounts unless I am connected to Wifi.  Please help!!!

    One is my personal email  set up in the email app and the other is my business email set up on the Microsoft Exchange ActiveSync.  I have already tried removing and reentering which is not possible unless I am tethered to someone elses phone or I am on Wifi

  • I'm having problems with my email account. I receive emails when I'm in a wifi zone.  But if the wifi is turned off and i'm not in a zone I don't receive my emails through the cellular network.  Only when I power off the phone and turn it back on, do I re

    I'm having problems with my email account. I receive emails when I'm in a wifi zone.  But if the wifi is turned off and i'm not in a zone I don't receive my emails through the cellular network.  Only when I power off the phone and turn it back on, do I receive the emails through the cellualr network (again with the wifi off)

    In your email settings on the phone check to make sure it is set to receive emails on cellular network.  It's a feature you can turn off so your phone isn't constantly updating emails on the cell network, but if you are usually in a place with wifi and aren't concerned about going over your data allowance, you can turn it back on. 

  • I am not receiving text when they are sent to my phone number , I do receive them when they are se to my email address . Any thoughts

    I am not receiving text when they are sent to my phone number , I do receive them when they are se to my email address . Any thoughts

    Alll I can say is try to reset your iphone like, taking out the sims card. ALso try loging out of your Facetime and your email on your phone, telll me if that works, and did you try connecting Apple Support Team?

  • I am not receiving emails from a static IP address becasue icloud server thinks its spam when it isn't

    I am not receiving emails only from on preson. they get a message bumped back to them indicating that there is a DHCP block from there static IP address. What I gather is the icloud server thinks these emails are spam coming from the IP address so it's blocking it. How do you unblock it becasue it's not spam?

    the email provider is icloud.com email address. It has blocked a specific static IP address that is a customer I do regular business with. I get all other emails just fine. I event sent an email to myself from my work email which is from a static DHCP server and  it went through with no problems. It appears the icloud server has blocked a specific IP address because they think it's spam or something in a title of an email may have looked like it had illegal content. So I guess the email provider is Apple? Who do you contact? I know that they can change this by unmasking the IP address.

Maybe you are looking for

  • How can I call a variable from another class

    hi If I have two classes : one and two In class two I have a variable called : action In class one I want to check what is the value of action. How can I call action?

  • DirectoryEntry.Parent.Name throw exception: The network path was not found.

    I have very simple code to get AD domain name Public Function GetDomainName() As String Dim sDomainName As String = String.Empty Try Dim currentUser As String = WindowsIdentity.GetCurrent().Name.Replace("\", "/") Dim strPath As String = String.Format

  • Fan isnt working

    my hp laptop 15 notebook i don't think the fan is running but i got no error warning   when im watching a video  it over heats   i have coolsense running   but i feel no heat coming from the vents  it builds up and i am forced to shut it down  for an

  • Send a file PDF from mail SAP

    Hi forum, I have  a problem. I converted a smartforms to PDF and sended to function SO_DOCUMENT_SEND_API1 to send a mail external... So, when I tried to open the file attachment,  I can't open this file. and I watch a message : 'The file is damaged'.

  • Having trouble getting started.

    Guys, I inherited a website. I was kinda interested in it anyhow so I took a Dreamweaver seminar. I run Win 2000 here at work. I grabbed all the website information and put it in dream weaver. When I try to F12 any pages I cannot display them, I can