Send Email to Anonymous user thoruhg Sharepoint online custom web part

Hi All
Can you please suggest me how we can send Email to anonymous user?
I have create the custom contact us web part as a sandbox solution (For SharePoint Online public facing site) with following fields
Name: txtName
Email: txtEmail
Phone No: txtPhoneNo
Company Name: txtCompany
Message: txtMessage
Now I want to send the Email (txtEmail) to anonymous user which have fill the contact us form.
Note:  I am using SharePoint Online public facing site
Thanks
Deepak Chauhan
SharePoint 2010 & 2013 and Office-365 Branding and Front End Customization, UI Design

Hi Mokhtar
I have solved my problem Email send properly but i am using SharePoint online site when
we log In and then fill the contact us form so that mail send properly but when anonymous user fill the contact us form without log In so
that Email not send can you please suggest me how workflow work for anonymous user 
Thanks
Deepak
Chauhan
SharePoint 2010 & 2013 and Office-365 Branding and Front End Customization, UI Design

Similar Messages

  • Creating an O365 SharePoint Online 2013 Web Part control (that is NOT on another domain or inside an IFrame)

    We created SharePoint App that offers a Web Part we can add to SharePoint 2013 pages.  The problem is that web part installs as an iframe pointing to the apps domain. 
    Two challenges in trying to impact the Page's DOM and elements and also accessing the pages URL query string parameters. Basically cross domain issues.
    Is there any way to deploy a webpart that installs in-line as a component on the page like a Script Editor Web Part?
    If that must be done as a sandbox solution, how can users on 100+ sites easily download and install this web part like web parts from the App catalog and Store?
    BTW, How is it that a Script Editor Web Part installs in-line on the page without an iframe?  Possible to reproduce this in our own App?

    SharePoint 2013 apps are designed to be secure and must run outside of the SharePoint domain. They typically are HTML, JS and CSS and any custom compiled code is run on another web server and access via web services.
    The Script Editor Web Part is a code based (compiled) "traditional" web part that runs in the SharePoint process. If you are working on premise (i.e. not Office 365), and your SharePoint admins will permit custom code to deployed to their servers,
    then you can still create SharePoint 2010 style web parts. These can be deployed as "full trust" web parts or sandbox web parts. Full trust web parts are installed on the web servers while sandbox web parts need to be uploaded to a gallery
    in each site collection (not each site). If your 100+ sites are in a single site collection, then only one upload is needed. If you have 100+ site collections then you could use PowerShell to deploy the sandbox solution to all of them.
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • How to add external user in sharepoint using infopath web part

    hi,
    what i am trying to achieve is,
    1. Create an infopath web part which will take email id of external user as input(ex: [email protected]).
    2. Take an email id of that user into infopath form and add that to sharepoint group.
    3. Now that newly added user must be able to login in to sharepoint using his email id.
    How could i achieve this? 
    If redirect me to example or screen shots then it will be better to understand.

    Out of the box you can not use email address and passwords to authenticate, for this you would need to create a custom authentication mechanism
    http://code.msdn.microsoft.com/office/Claims-Walkthrough-51beedc5
    or just google it:
    https://www.google.be/search?hl=en&q=sharepoint+custom+authentication+provider&btnG=Search&meta=&aq=f&aqi=g10&aql=&oq=&gs_rfai=
    Once this is implemented, you need to create custom code in you form, to call this new API and register the user, but 2nd step depends on how you do first.
    Follow me on Twitter <<<
    levalencia Blog <<<

  • Access Exchange Service From SharePoint 2013 Custom Web part getting The request failed with HTTP status 401: Unauthorized.

    I want to Fill a drop down with Outlook Meeting of Current log-in user in SharePoint 2013 web part for default credentials I am using the following code
     ExchangeServiceBinding binding = new ExchangeServiceBinding();
                ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, sslPolicyErrors) => true;
                binding.RequestServerVersionValue = new RequestServerVersion();
                binding.RequestServerVersionValue.Version = ExchangeVersionType.Exchange2010_SP2;
                binding.PreAuthenticate = true;
                binding.UseDefaultCredentials = true;
                binding.Credentials = CredentialCache.DefaultCredentials ; 
                string server = "https://*********/ews/Exchange.asmx";
                binding.Url = server;
    I Am Getting the Error "The request failed with HTTP status 401: Unauthorized."
    but when I Replace  the line  
    binding.Credentials = CredentialCache.DefaultCredentials ; 
    with 
     binding.Credentials = new NetworkCredential(userName, password, domain);
    Its run fine.  Is there any way I could able to use default credential.
      

    Hi,
    As this question is more relate to Exchange development, I suggest you post it to the corresponding forum, you will get more help and confirmed answers from there.
    http://social.msdn.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to send emails to Multiple Users from a Single People Picker lookup field using Sharepoint designer workflow

    Hi All,
    I am working with SharePoint 2013 designer workflow. we are using office 365.
    Our requirement to send email to multiple users, get the user groups from lookup list people and groups column.
    But SP designer sending emails to the first user alone.
    Please guide me to proceed.
    Advance Thanks.
    Regards
    Jenkins NS
    Thanks and Regards Jenkins

    finally I got a solution
     Identified a workaround to solve the issue using SharePoint designer.
    Step 1
    Create a lookup list Example department
    Columns
    Title (by default) – Single line of text
    Users – Person or Group
    Emails – Multiple lines of text
    hidden the Emails column (go to content type and set the column as hidden)
    Create a SharePoint designer Workflow
    Start Workflow automatically when an item is created
    Also Start Workflow automatically when an item is changed
    Workflow Stage 1
    Set Emails to current Item: Users
    The workflow will get all users email ids and add in the Emails column delimiter as semicolon.
    Step 2
    Create a custom list to get the email ids and send email
    Create a lookup column ex: analysis and refer department list, Allow multiple values
    Then Create a SharePoint designer workflow
    full details workflow steps please follow below
    URL
    http://jenkinsblogs.com/2015/04/30/how-to-send-emails-to-multiple-users-from-lookup-list-people-picker-field-using-sharepoint-designer-workflow/
    Thanks and Regards Jenkins

  • Email through Event receiver in SharePoint Online

    Hi,
    I am creating an event receiver for custom list which will send email to users in sharepoint online.
    I am using the following code to send email through event receivers in sharepoint.
                MailMessage mMailMessage = new MailMessage();
                mMailMessage.From = new MailAddress("[email protected]");
                mMailMessage.To.Add(new MailAddress("[email protected]));
                mMailMessage.Subject = "subject1";
                mMailMessage.Body = "just a body";
                mMailMessage.IsBodyHtml = true;
                SmtpClient client = new SmtpClient("smtp.office365.com", 587)
                    Credentials = new NetworkCredential("[email protected]", "****"),
                    EnableSsl = true,
                   UseDefaultCredentials = false,
              client.Send(mMailMessage);
    NOTE: I am using MailMessage() because it is in the sandbox solution.
    However I am facing the following error :
    Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=4.0.0.0,
    Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
    It may be because I am trying to use SMTP server of sharepoint Online,However I am not able to connect it.
    Can anybody help me and can advice how to send email programmatically from sharePoint online ?
    Thanks
    Jhalak

    In Office 365, there's no direct way to send an email programmatically because the SPUtility.SendEmail
    Method isn't available in sandboxed solutions. The workaround is to use the Send an Email action in a list workflow.
    For further detail: http://visualstudiomagazine.com/blogs/tool-tracker/2012/04/send-an-email-in-office-365.aspx

  • Unable to send email to the users from Project Server Workflow

    Hello all,
    I am facing issues in sending emails to the users from the workflow in SharePoint Designer 2013.
    I am trying to send emails to valid users in a Project server 2013 Workflow by Email action.
    I have set up the SMTP server successfully, I have configured SMTP server successfully in IIS manager 6.0
    I have configured the outgoing e-mail settings in Central Administration successfully,
    I have configured the SMTP email settings for my web app in IIS manager as well.
    I have configured and synced the User Profile App with the eMail addresses from Active Directory as well.
    I have configured the Alerts and Reminders in Operational Policies of PWA settings as well.
    I can send the emails to the users successfully through Powershell.
    But when I am trying to Start a Task Process with a user in the workflow, the task process starts but it never sent an email notification. So I tested by using the Action Email, that also the user is unable to receive any email. But the Workflow is not giving
    any error also. The email sending is successful, but the user is unable to receive it. The workflow succeeds to next phase without any errors.
    So to cross verify I tried 'Alert Me' option on a list, but that also is not sending(or might be sending but the user is not receiving) the mail.
    What else should I do to solve this issue.
    Please help me.
    Thanks,
    Shanky

    Hello Paul,
    I tried editing the PWA instance as you said, but that also didn't help :(
    I even restarted the Project Server Service, but nothing is changed. 
    I tried creating a new workflow for a List and used send email there, but that also is not sending the mail :(
    How do I check where the issue is from ? I mean, whether the workflow is sending the mail and the mail server is not receiving? or whether the workflow is not sending the mail itself? how do I check this? Is there any way to log these details?
    Please help me regarding this issue, I am totally clueless how to proceed.
    Thanks,
    shanky

  • Send email from PA30 user exit

    When I try to send an email from user exit in ZXPADU02 it never makes it to SOST.  WIll always go to SBWP outbox if I set the flag but never gets sent to receiver address.
    If I paste the following code into a report it works fine.  Is there some other parameter for this FM or some additional process needed to send email from a user exit?
        DATA: maildata TYPE sodocchgi1.
        DATA: mailtxt  TYPE TABLE OF solisti1 WITH HEADER LINE.
        DATA: mailrec  TYPE TABLE OF somlrec90 WITH HEADER LINE.
          CLEAR maildata.
          REFRESH: mailtxt, mailrec.
          maildata-obj_name = 'SRVC_EMAIL'.
          maildata-obj_descr = 'Email test'.
          maildata-obj_langu = sy-langu.
          mailtxt-line = 'Test line from user exit'.
          APPEND mailtxt.
          mailrec-receiver = '[email protected]'.
          mailrec-rec_type  = 'U'.
          APPEND mailrec.
          CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
            EXPORTING
              document_data              = maildata
              document_type              = 'RAW'
              put_in_outbox                = 'X'
              commit_work                  = 'X'
            TABLES
              object_header                = mailtxt
              object_content               = mailtxt
              receivers                       = mailrec
            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.

    Put the function call 'SO_NEW_DOCUMENT_SEND_API1'
    in a report Program & SUBMIT that report from ZXPADU02.
    Arya

  • Send email to external user using fm 'SO_NEW_DOCUMENT_ATT_SEND_API1'

    Hi friends,
    I wrote this code to send mail to external user from sap.
    It did not work properly can anyone help me to send email to extenal user.
    The return code after executing the function module is 2.
    DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS  2 WITH HEADER LINE.
    DATA: OBJHEAD LIKE SOLISTI1   OCCURS  1 WITH HEADER LINE.
    DATA: OBJBIN  LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT  LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST LIKE SOMLRECI1  OCCURS  5 WITH HEADER LINE.
    DATA: DOC_CHNG LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    Creating the document to be sent
    DOC_CHNG-OBJ_NAME = 'OFFER'.
    DOC_CHNG-OBJ_DESCR = 'abcd'.
    OBJTXT = 'aaaaaaaaaaa:'.
    APPEND OBJTXT.
    OBJTXT = 'bbbbbbbbbb'.
    APPEND OBJTXT.
    OBJTXT = 'ccccccccccccc.'.
    APPEND OBJTXT.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    RECLIST-RECEIVER = mail address.
    RECLIST-REC_TYPE = 'U'.
    RECLIST-COM_TYPE = 'INT'.
    RECLIST-NOTIF_DEL = 'X'.
    RECLIST-NOIF_NDEL = 'X'.
    APPEND RECLIST.
    Creating the entry for the compressed document
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM   = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM   = TAB_LINES.
    OBJPACK-DOC_TYPE   = 'RAW'.
    APPEND OBJPACK.
    Creating the document attachment
    (Assume the data in OBJBIN are given in BMP format)
    OBJBIN = ' \O/ '. APPEND OBJBIN.
    OBJBIN = '     '. APPEND OBJBIN.
    OBJBIN = ' / \ '. APPEND OBJBIN.
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    OBJHEAD = 'picasso.bmp'. APPEND OBJHEAD.
    Creating the entry for the compressed attachment
    OBJPACK-TRANSF_BIN = 'X'.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM   = 1.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM   = TAB_LINES.
    OBJPACK-DOC_TYPE   = 'BMP'.
    OBJPACK-OBJ_NAME   = 'ATTACHMENT'.
    OBJPACK-OBJ_DESCR = 'Reproduction object 138'.
    OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK..
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
         EXPORTING
              DOCUMENT_DATA = DOC_CHNG
              PUT_IN_OUTBOX = 'X'
              COMMIT_WORK   = 'X'
         TABLES
              PACKING_LIST  = OBJPACK
              OBJECT_HEADER = OBJHEAD
             CONTENTS_BIN  = OBJBIN
               CONTENTS_TXT  = OBJTXT
               RECEIVERS     = RECLIST
          EXCEPTIONS
               TOO_MANY_RECEIVERS = 1
               DOCUMENT_NOT_SENT  = 2
               OPERATION_NO_AUTHORIZATION = 4
               OTHERS = 99.
    IF SY-SUBRC NE 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    Hi,
    Check in SCOT t-code whether it has been properly configred to send the mails
    Regards,
    siva chalasani.

  • We have a long list of disabled/deleted users in AD Somehow, they are still appeared as active user in Sharepoint Online. How do we get rid of those list? Hope you can advice. Thanks.

    we have a long list of disabled/deleted users in AD
    Somehow, they are still appeared as active user in Sharepoint Online.
    How do we get rid of those list?
    Hope you can advice. Thanks.

    SharePoint does not remove users from SharePoint permissions just because they were deleted/disabled in AD. This is to maintain referential integrity. In fact, when you delete a user from SharePoint, that user remains in the SharePoint content database,
    just marked as deleted.
    They do not have access to SharePoint given their account is deleted/disabled. But as far as automatically managing this, I'm not aware of a tool. On-prem there is Metalogix ControlPoint which does a great job of this, I haven't explored the O365 options.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Help with sending emails to multiple users.

    Currently we have a process to send mail to muliple users by looping through the list of users and sending each individual an email
    <Action id='1' name='sendEmail' application='com.waveset.provision.WorkflowServices'>
    <Argument name='op' value='notify'/>
    <Argument name='template' value='$(template)'/>
    <Argument name='toUser' value='$(tuser)'/>
    <Argument name='catch' value='notificationException'/>
    </Action>
    The variable tuser contains a single email address.
    Is there any way to setup tuser to contain multiple email addresses?
    I have tried passing a list and a string separated by colons (ex: <s>[email protected]; [email protected]</s>) and neither one works.
    Question 2
    Is it a bad idea to try and send email to up to 50000 users at once using IDM? Besides the fact that I would need to search for specific users and get their email addresses based on their capabilities.

    Hi,
    For sending emails to multiple users, use to instead of toUser. Put the names in comma seperated values
    <Action id='0' application='com.waveset.provision.WorkflowServices'>
    <Argument name='op' value='notify'/>
    <Argument name='template' value='$(template)'/>
    <Argument name='to' value='$(to)'/>
    <Argument name='cc' value='$(cc)'/>
    <Argument name='catch' value='notificationException'/>
    </Action>
    You can use IDM to send emails.
    it will be a good idea to break down the email that you are sending into groups/batches. If possible, you can send email to DL s
    Else, you can segregate the users based on roles and send emails. This will reduce the load. Hope it helps
    Regards
    Arjun
    Edited by: arjun.sengupta on Dec 4, 2012 3:26 AM

  • Search suggestion not working for anonymous user in sharepoint 2013

    Hi ,
    Please help on this search suggestion not working for anonymous user in sharepoint 2013
    shaik

    You can create a search center site, and set the search center site to
    allow anonymous access.
    Also see this link - http://blog.mastykarz.nl/search-query-suggestions-anonymous-users-sharepoint-2013-mavention-query-suggestions/ 
     (As this is regarding a 3rd party tool, I suggest that you direct it to the  provider support.)
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Import AD users to SharePoint online

    Hi, I need a help in import active directory users in to SharePoint online. So that the authentication will be done with imported users on SharePoint online. Please help me with procedure to integrate/import on premise AD to SharePoint online.
    Thanks in advance,
    Sai

    Hi Sai..
    I understand that you want to Import local AD users to SharePoint online.
    Please download DirSync from office 365 admin center
    it will sync all users from AD to office 365 then you need to assign licence.
    please have a look on bellow blog
    Mukesh

  • Send email to multiple user

    All experts:
        I want to send an email to multiple user, I use the FM:SO_NEW_DOCUMENT_SEND_API1,
    this FM can to mutiple user's email address ,but it can not re-set the email sender.
    another FM is: EFG_GEN_SEND_EMAIL, this FM can re-set the email sender and email receiver, but this only can send one email to one receiver.
    My question is, can anyone tell me how to send email to mutiple user,
    e.g.: sender: abc/at/abc.com
            receiver 1  cdg/at/abc.com
            receiver 2   dd/at/hotmail.com
    I want to send this email to both them at a time. and i can dynamic set the email sender.
    Thanks in advance.

    Hi,
    It is a good practice to write a function to send email and use this function as much as you want.
    Please create the following function exactly,
    it will help you:
    You see imports and exports of this function:
    TO1 through TO3 is the mail adresses you can pass. You can use just one of them or all of them.
    And  you can use the  BODY STRUCTURE  TLINE OPTIONAL
    as the contents of the email.
    Hope helps.
    FUNCTION Z_PA_SENDMAIL.
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(TO1) LIKE  ADR6-SMTP_ADDR
    *"     VALUE(TO2) LIKE  ADR6-SMTP_ADDR OPTIONAL
    *"     VALUE(TO3) LIKE  ADR6-SMTP_ADDR OPTIONAL
    *"     VALUE(SUBJECT) LIKE  TZV51-XBRIEF
    *"     VALUE(ATT_TYPE) LIKE  SOOD-OBJTP OPTIONAL
    *"     VALUE(ATT_NAME) LIKE  SOOD-OBJNAM OPTIONAL
    *"     VALUE(ATT_DESC) LIKE  SOOD-OBJDES OPTIONAL
    *"     VALUE(NOTIF_DEL) LIKE  SOMLRECI1-NOTIF_DEL OPTIONAL
    *"     VALUE(NOTIF_READ) LIKE  SOMLRECI1-NOTIF_READ OPTIONAL
    *"     VALUE(NOTIF_NDEL) LIKE  SOMLRECI1-NOTIF_NDEL DEFAULT 'X'
    *"     VALUE(SEND_AS) LIKE  SOEXTRECI1-RECEIVER DEFAULT SPACE
    *"  EXPORTING
    *"     VALUE(SENT_FLAG) LIKE  SOPR-FLAG1
    *"  TABLES
    *"      BODY STRUCTURE  TLINE OPTIONAL
    *"      ATTCH STRUCTURE  SOLISTI1 OPTIONAL
    *"  EXCEPTIONS
    *"      TOO_MANY_RECEIVERS
    *"      DOCUMENT_NOT_SENT
    *"      OPERATION_NO_AUTHORIZATION
    data: doc_chng like sodocchgi1.
    data : objpack like sopcklsti1   occurs 10 with header line,
            objhead like solisti1     occurs 10 with header line,
            objbin  like solisti1     occurs 10 with header line,
            objtxt  like solisti1     occurs 10 with header line,
            reclist like somlreci1    occurs 10 with header line.
    data: tab_lines like sy-tabix.
    data: sent_to_all like sonv-flag.
    objtxt[] = body[].
    objbin[] = attch[].
    doc_chng-obj_name  = 'Mail'.
    doc_chng-obj_descr = subject.
    * Creation of the entry for the compressed document
    describe table objtxt lines tab_lines.
    clear objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    read table objtxt index tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
    doc_chng-doc_size = doc_chng-doc_size + objpack-doc_size.
    objpack-doc_type = 'RAW'.
    objpack-obj_name  = 'Body'.
    objpack-obj_descr = subject.
    append objpack.
    describe table objbin lines tab_lines.
    if tab_lines > 0.
      objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num = 0.
      objpack-body_start = 1.
      objpack-body_num = tab_lines.
      read table objbin index tab_lines.
      objpack-doc_size = ( tab_lines - 1 ) * 255 + strlen( objbin ).
      doc_chng-doc_size = doc_chng-doc_size + objpack-doc_size.
      objpack-doc_type = att_type.
      objpack-obj_name = att_name.
      objpack-obj_descr = att_desc.
      append objpack.
    endif.
    reclist-rec_type  = 'U'.
    reclist-notif_del = NOTIF_DEL.
    reclist-notif_read = NOTIF_READ.
    reclist-notif_ndel = NOTIF_NDEL.
    reclist-receiver  = to1.
    append reclist.
    if not to2 is initial.
      reclist-receiver  = to2.
      append reclist.
    endif.
    if not to3 is initial.
      reclist-receiver  = to3.
      append reclist.
    endif.
    delete reclist where receiver eq space.
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           exporting
                document_data              = doc_chng
                put_in_outbox              = ' '
                commit_work                = 'X'
    *            SENDER_ADDRESS             = send_as
           importing
                sent_to_all                = sent_flag
           tables
                packing_list               = objpack
                object_header              = objhead
                contents_bin               = objbin
                contents_txt               = objtxt
                receivers                  = reclist
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                operation_no_authorization = 4
                others                     = 99.
      case sy-subrc.
       when 0.
    * SUCCESS
       when 1.
        raise TOO_MANY_RECEIVERS.
       when 2.
        raise DOCUMENT_NOT_SENT.
       when 4.
        raise OPERATION_NO_AUTHORIZATION.
       when others.
        raise OTHERS.
      endcase.
    ENDFUNCTION.

  • How to send email alert to users from the query output ?

    Hi all,
    I intend to write a pl/sql to send email alert to user based on the following query output :-
    Item_______Qty_on_hand________Min_qty______email
    [email protected]
    [email protected]
    [email protected]
    once run, I will like to distribute to those email id. How should I code that in pl/sql ? or any other better idea is welcome. Thanks.
    Rgds
    Lim

    http://asktom.oracle.com/pls/ask/f?p=4950:8:3439330610438686683::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:255615160805,

Maybe you are looking for

  • Ipad mini will not remember passwords after update to iOS 8.0.2

    My ipad used to remember forum user names/passwords but after updating first to ios 8 then to iso 8.02 it no longer remembers them, I have gone to Safari then passwords/auto fill and all of the green sliders are activated. I tried login on then creat

  • Roar mini speaker won't pair with Samsung S tablet

    My HP Roar Mini wireless gives me an error code when I try to pair with new Samsung S Tab...invalid PIN or Password.How to I get it to connect?

  • Doing something wrong creating a form

    I am a brand new flex user, taking the "flex challenge" so to speak.  I am primarily a designer, but I have heard that Flash Builder 4 is so easy to use, that I should be able to pick it up pretty easily.  I love the skinning and styling options, but

  • For month I cannot connect to the Capital One online account services

    Whenever I try to connect to the online services of Capital One in the uk, I get a note "We're sorry, Online Account Services is currently unavailable. I called Capital One and was told: now problem just use the Internet Explorer. But I prefer the Fi

  • Printing monospaced in bold

    Hello, with a GUI it's easy to set the font to Monospaced-bold in the paint(Graphics g) method: g.setFont(new Font("Monospaced", Font.BOLD, 12));But in the print(...) method "Monospaced" is output correctly only when set to Font.PLAIN. Font.BOLD beco