Submitting form's contents to user-specified e-mail addresses

Is it possible to send the contents of a form to a user specified e-mail address (that is different each time) and include the attachments that were uploaded using the File Upload button?

Hi Don,
If you look at the email line of script, you will see that I am adding the CC variable at the END of the cURL string.
event.target.submitForm({cURL:"mailto: "+ vEmail +"?subject=" + vSubject +"&body=" + vBody + vCC,cSubmitAs:vFormat,cCharset:"utf-8"});
vCC is put at the end of the mailto string because it starts with an "&cc=", which is missing from my script above. (in my defense I was scripting on the side of the road, from memory )
// Declare the variable
var vEmail;
var vCC = "";
// Check that the email field is not null
if (txtToAddress.rawValue !== null) {
     vEmail = txtToAddress.rawValue;
// Look at cc fields over three if statements
if (ccEmail.rawValue !== null){
     vCC = "&cc=" + ccEmail.rawValue + ";";
if (ccEmail.rawValue !== null && MEAdminEmail.rawValue !== null){
     vCC = vCC + MEAdminEmail.rawValue;
else if (ccEmail.rawValue === null && MEAdminEmail.rawValue !== null)  {
     vCC = "&cc=" + MEAdminEmail.rawValue;
// Send email
event.target.submitForm({cURL:"mailto: " + vEmail + "?subject=MAR Assignment" + vCC,cSubmitAs:"PDF",cCharset:"utf-8"});
That should work,
Niall

Similar Messages

  • I have changed the user-id e-mail address. Bought a new MacBookPro, updated my Appleid and some purchased apps do not appear.

    I have changed my AppleId's e-mail address and thus the Appleid user name. I bought a new MacBookPro and updated my Appleid info. The problem is that it does not list all the Apps bought. I have only one iphone connected to it. My daughter has an ipad and had purchased a lot of apps using the old user-id. She had the ipad linked to another computer. However, the ipad does not switch on and from Apple Support they told me that it would be better if I restore it using a Mac. So my question is: if I restore it using the Mac, how would all these apps be synced since they do not appear on my iTunes on the Mac? Shouldn't all the apps appear since I have bought them?
    I would appreciate a reply.
    Kind Regards,
    Dimitra

    I have the same issue. The new address is fine when I use iTunes and on my iCloud account, but my iPhone has my old e-mail address and when I try to change it won't accept my new or old password to be able to do so.

  • Manually adding AD user or Group mail address in SCSM 2012 R2 Configuration item

    Hi ,
    Since in our AD environment  some of the AD user's mail Id attribute is null, I  added the
    smtp mail Address value in SCSM 2012 R2 user configuration item ,
    After the AD connector synchronization, the manually entered mail Id is removed. I have also checked the property
    do not write null values for the property not set in AD in the Connector properties
    But still , the manually entered mail id is removed by SCSM
    so is it not the correct way  to add mail id manually ???
    Any suggestions???
    The mail Id property is required for mail notification feature in our environment

    the long and short of this is that the AD connector is behaving as designed and correcting values in SCSM from the authoritative source in AD.
    The connector should not be blanking values with that checkbox set. are you sure AD is actually
    Null, and not either an empty string or white-space characters? Can you reproduce this with other users? Might be worth reporting this if there is actually a bug in the connector. 
    Why wouldn't you set the Mail attribute in AD? there isn't any good reason for this to be null. 

  • Saving form with content (end user)

    I have created a form using AdobeLiveCycle Designer.
    Everything seams to work when I tested it... However, When I send it for someone to fill out, she wanted to save a copy for her records with the data included. I was able to do a simple "save as" to achieve this. but she was not and received a message, stating "Data typed into this form will not be saved. Acrobat reader can only save a blank version of the form." then goes on to say "please print you completed form if you would like a copy for you records" "print form" button appears.
    My question: Is there a way to format or save out the form so that someone with only reader can save a completed version of the form. How do I do this?
    Thanks!

    The form has to have special Extended Reader Rights enabled. There are many posts and pinned FAQs about this.

  • Send output of smartforms by mail to a specified e-mail adress.

    Dear all ,
            How can I send output of smartforms to purchase order pdf format and send this pdf file to a specified e-mail address.
    Best regards,
    Merry

    zhang for the pdf you need to put the code as given below..........:-) .This include the complete sequence.
    Converting the Smartform into PDF Format
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       FORMAT                      = C_PDF
       MAX_LINEWIDTH               = 132
    IMPORTING
       BIN_FILESIZE                = V_LEN_IN
      TABLES
        OTF                         = I_OTF
        LINES                       = I_TLINE
    EXCEPTIONS
       ERR_MAX_LINEWIDTH           = 1
       ERR_FORMAT                  = 2
       ERR_CONV_NOT_POSSIBLE       = 3
       ERR_BAD_OTF                 = 4
       OTHERS                      = 5
    IF SY-SUBRC <> 0.
      MESSAGE 'Error in CONVERT_OTF'(049) TYPE C_MSGTYPE_I.
    ENDIF.
    Convert PDF from 132 to 255.
    LOOP AT I_TLINE INTO W_TLINE.
    TRANSLATE W_TLINE USING ' ~'.
    CONCATENATE W_BUFFER W_TLINE INTO W_BUFFER.
    APPEND W_BUFFER TO I_BUFFER.
    ENDLOOP.
    LOOP AT I_BUFFER INTO W_BUFFER.
    TRANSLATE W_BUFFER USING '~'.
        DO.
          W_RECORDS = W_BUFFER.
          APPEND W_RECORDS TO I_RECORD.
          SHIFT W_BUFFER LEFT BY 255 PLACES.
          IF W_BUFFER IS INITIAL.
            EXIT.
          ENDIF.
        ENDDO.
    ENDLOOP.
    Object with PDF.
    I_OBJBIN[] = I_RECORD[].
    Content of the email.
      W_OBJTXT-LINE         = 'Smartform_output is attched'(020).
      APPEND W_OBJTXT TO I_OBJTXT.
    *I_OBJTXT[] = I_RECORDS[].
    DESCRIBE TABLE I_OBJTXT LINES V_LINES_BIN.
    Document Data
        CLEAR W_DOC_CHNG.
        W_DOC_CHNG-OBJ_NAME  = 'ZSAS_TRAVAGREE'.
        W_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
        W_DOC_CHNG-OBJ_DESCR = 'Form for Travel Agreement'(021).
        W_DOC_CHNG-PRIORITY  = C_HIGH_1.
        W_DOC_CHNG-DOC_SIZE  = V_LINES_BIN * 255.
    Pack to main body as RAW.
    Obj. to be transported not in binary form
    Start line of object header in transport packet
    CLEAR W_OBJPACK.
    REFRESH I_OBJPACK.
    I_OBJPACK-HEAD_START = 1.
    Number of lines of an object header in object packet
    I_OBJPACK-HEAD_NUM = 0.
    Start line of object contents in an object packet
    I_OBJPACK-BODY_START = 1.
    Number of lines of the object contents in an object packet
    I_OBJPACK-BODY_NUM = V_LINES_TXT.
    Code for document class
    I_OBJPACK-DOC_TYPE = 'RAW'.
    CLEAR I_OBJPACK-TRANSF_BIN.
    APPEND I_OBJPACK.
    To specify the mail content and subject.
      DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
    Packing as PDF.
    I_OBJPACK-TRANSF_BIN = 'X'.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    I_OBJPACK-BODY_NUM = V_LINES_BIN.
    I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    I_OBJPACK-DOC_TYPE = 'PDF'.
    I_OBJPACK-OBJ_NAME = 'ZSAS_TRAVAGREE'.
    I_OBJPACK-OBJ_DESCR = 'Form for Travel Agreement'(021).
    APPEND I_OBJPACK.
    Document information.
    REFRESH I_RECLIST.
    e-mail receivers.
    W_RECVLIST-RECEIVER = G_MAIL_ID.
    W_RECVLIST-EXPRESS = C_X.
    W_RECVLIST-REC_TYPE = C_EXTERNAL_EMAIL. "Internet address
    APPEND W_RECVLIST TO I_RECLIST.
    REFRESH I_OBJHEAD.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA                    = W_DOC_CHNG
        PUT_IN_OUTBOX                    = C_X
        COMMIT_WORK                      = C_X
      TABLES
        PACKING_LIST                     = I_OBJPACK
        OBJECT_HEADER                    = W_OBJHEAD
        CONTENTS_BIN                     = I_OBJBIN
        CONTENTS_TXT                     = I_OBJTXT
        RECEIVERS                        = I_RECLIST
    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
    IF SY-SUBRC <> 0.
    ENDIF.
    let me know if you wanna any help ....
    Edited by: varghese oommen on Apr 29, 2009 10:16 AM

  • I am low on the techy food chain and need help. Why does my g-mail address get rejected when I fill out forms on line. I do not have this problem with Safari :(

    When filling out forms or needing to give my g-mail address on Firefox, my address is always rejected. It comes up as an non valid address. I then have to switch to Safari to complete all forms. :(

    You don't download apps from the iTunes app store with Safari.

  • User E-mail address

    Hi ,
    Can anybody tell me the table from which i can select the user's E-mail address, with the help of the user id in the "where" clause of the "select" statement.
    Regards
    Naren Rathinavelu.

    hi ,
    Please try table <b>pa0105</b> it is an infotype for(Communications)
    the 2 fields used are
    USRID
    USRID_LONG
    but be careful with subtype...
    0001     SAP System User ID
    0005     Business Fax Number
    0010     Business e-mail
    0020     First Telephone Number at Work
    Based on the organisation you may have custom subtypes
    if for example you want to select business e-mail using a select query as follows
    SELECT SINGLE usrid_long FROM pa0105
      INTO wf_email_id WHERE
      pernr = p9051-pernr
      AND subty = '0010'
      AND    endda GE sy-datum
      AND    begda LE sy-datum.
    *Hope you found the above information useful
    Regards
    BX

  • Multi-language support for user-specified text strings used in the forms

    multi-language support for user-specified text strings used in the forms
    Instead of creating multiple forms, 1 in each different language, for the same service, is there any workaround?

    Hoan - is your question what are the considerations when creating multiligual catalogs? If so, I can tell you that at other clients I have seen them use a single catalog for one or two languages. For the two langugages, such as Spanish/English, you can create a single catalog with both of them. Once you get to more than two languages, the catalog would get unweildy and is therefore not suggested.

  • Error submitting form for Distribution: "The filename you specified is not valid because it does not

    Error submitting form for Distribution:
    "The filename you specified is not valid because it does not include a .pdf extension, contains one or more invalid characters or teh path preceding it refers to a protected system location."
    Tried removing dashes from filename, shortenign filename, moving to root directory. No changes. File ends with a .pdf extension.
    This is my first attempt to distribute via acrobat.com

    I found that I got that same message using Acrobat Professional to send out a document for shared review.  I had an exclamation mark in the title of the PDF. When I took out the exclamation mark, it worked.
    So maybe try taking out anything "unusual" (parentheses, dashes, exclamation marks, etc.) in the file name and see if that helps.
    Good luck,
       Philip.

  • Contact Form - Email forwarding from user submitted forms

    How can one have the user's submitted email address in the from dialog instead of the adobe user account email. My client would like to be able to use the reply button in there email client instead of starting a new email. At the moment all the submitted forms come from my adobe account and use my name instead of the user's name the submitted the form. This makes tracking submitted forms more difficult. Is there a solution available?
    Thanks,
    Graeme

    You can set the 'from' email address after you log in to your website admin.
    You can get there by clicking the 'manage' button in Muse, or pointing your browser to yoursite.businesscatalyst.com/admin
    Then click 'Site Manager', then 'System Emails', then 'Set Default 'From' Email'

  • Submitting Form to Orchestration

    I apologize if this question is incredibly basic. I've looke for answers and can't find them.
    We've been using Workspace for development, but cannot do so in production now (bummer) for many reasons. So, we are building forms that prepopulate via web service calls and populate drop down lists as well. That part is working fine. What I need to do is have a submit button on the form that allows the user to submit the form when completed back to the LC server. I have an orchestration that will pase the form data and perform a SQL insert into a database.
    So, I assume that I build the orchestration with the specified form as input, correct? Outside of Workspace, how does the form get submitted? Do I need to specify the wsdl URL of the orchestration in the submit button?
    Thanks for any help

    You could build an orchestration that has an input variable of type XML or document, depending if you submit just the data or the entire PDF.
    You could invoke the orchestration using a web service call from the form or use a submit button and call a servlet that will in turn use the java API to invoke your orchestration.
    Jasmin

  • Encoding error message when submitting form to REST endpoint

    When submitting a stand-alone form to the REST endpoint of a process I receive the following message in Acrobat reader (translated from german):
    "An error occured when submitting the form. Content of type text/plain;charset=utf-8 could not be processed"
    Despite the error message the process gets started and works fine.
    In terms of usability I would like to get rid of this error message since it irritates the ordinary user.
    This happens only in Acrobat Reader (version is 10.1)  not in Pro
    My workbench version is 10.0.1

    The No Content approach should work. Can you show the exact code you're using to generate the response? Did you add "#FDF" to the end of the URL for the submit form action?
    If you haven't looked into it already, consider returning an FDF that causes a popup dialog to display as a way of providing feedback.

  • XML forms based content authoring

    Hi All,
    I was wondering if UCM suite provides any XML forms based authoring as provided by many other Web Content Management product suites OR Site Studio or Site Builder are the only ways to create the content?
    What exactly I am looking for is the very conventional way of creating content using XML forms based templates and then applying XSLT to it to generate the output in desired format.
    Please let me know if any one know about this or will be helpful if somebody can provide pointers on this.
    Thanks-
    Sahil

    UCM provides Web Forms functionality. Take a look at Web Form Editor - the component to Oracle Content Server.
    Web Form templates can be visualy designed using Web Form Editor.
    When user fills in and submits designed and published web form, new content item is created - a form with the data. Data is stored as XML document and can be passed through the workflow for aprove process or integration into back office systems.

  • Copy distribution list  to all content services user folders

    We have an Outlook distribution list PST file that current resides in a Windows file server. This gets pushed out the the personal folder of each user overnight.
    Going forward, we need to push this PST file to all the Content Services user personal folders (Users-A, Users-B ... Users-Z).
    I created a single superuser that has all administrative rights to all the users personal folders. And I can upload a file through the webdav http interface.
    with the "Upload" button while I'm "Switched to Administrative Mode" only.
    And I can't see the users personal folders while using the Oracle Drive nor
    thru a Network drive.
    Is there a way of pushing this to all the users' personal folders???

    Hi Juan,
    I tried that but it is not showing the shared distribution list for moving.
    I found 1 sap BC office document which stats that moving the distribution list form Private to public is not possible due to security reason.
    So, no options for me and to create manual shared distribution list.
    Thanks
    Anil

  • How do I open a form specific to particular user?

    Hi All,
    Please answer below questions:
    1) How do I open a form specific to particular user?i.e I want to open a form as enterable mode for one user and non-enterable mode for another user.
    2) How do I run a report specific to the particular user? i.e I want to run a report for one user here other user can not see the report.
    Thanks in Advance,
    Dhana

    1) How do I open a form specific to particular user?i.e I want to open a form as enterable mode for one user and non-enterable mode for another user.Create a new responsibility, and set QUERY_ONLY=YES -- See old threads for similar discussion.
    QUERY_ONLY
    http://forums.oracle.com/forums/search.jspa?threadID=&q=QUERY_ONLY&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    2) How do I run a report specific to the particular user? i.e I want to run a report for one user here other user can not see the report.Through "Concurrent: Report Access Level" profile option.
    Concurrent Report Access Level [ID 736547.1]
    R12 View Concurrent Requests FAQ [ID 1261985.1]
    Can't View Request's Output Submitted By Others [ID 949703.1]
    How to View the Output of a Request Launched by Someone Else [ID 413382.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Web Photo Album 2.2 in DW CS3

    Running the extension from the Command menu I got to selecting the folder of images and just after loading the folder, or selecting and image from the list I get this error: "While executing onClick in Create Web Photo Album 2.htm,the following Javas

  • How to transfer DVD RAM (MPeg 2) videos into imovie?

    I just bought an IMAC with OS X and Tiger to transfer all my DVD RAM discs into imovie, only to find out imac doesn't recognize the camera (Hitachi DZ-MV100A). Does anyone know of a drive I can buy to connect to the IMAC that would allow me to transf

  • Sudden vast increase in broadband speed

    Hi, the last couple of days or so I've noticed my internet dropping off and when it happened again tonight, I ran a speed test, both on wholesale tester and speedtest.net, and instead of the usual 5meg that i normally get, im now getting 14megs. my e

  • ACCEPT in SQL script not working

    G'day Why does the following use of the 'accept' keyword not work? I want a user to be prompted to either commit or rollback but it does not work in the following 'experiment' set echo on set termout on set feedback on update emp set sal = sal*2 wher

  • How to sort specific column when using GROUPING SETS in SQL Server?

    If I remember correctly, in SQL Server, it is not recommended to use "ORDER BY" when there's already a GROUP BY GROUPING SETS. I have two columns: [UPC#] & [Description] both are varchar. My grouping sets is like this: GROUP BY GROUPING SETS ([UPC],[