Adding a subject in the subject line of mailto

Hi
I have created some code in the CO with setDestination(mailto). When the customer clicks the link it will open up an email page. Is it possible to populate the subject line in the email with code in CO?
Thanks
Andrew

Hi
Thanks its works.
Any reason why this would not return a subject line
String custName = pageContext.getParameter("CustomerName");
OAMessageStyledTextBean linkBean =(OAMessageStyledTextBean)webBean.findChildRecursive("CustomerName");
linkBean.setDestination("mailto: [email protected]?subject"+custName)
I need the subject line to be that of the client thats busy being queiried.
Andrew

Similar Messages

  • ICloud Mail will not let me enter a subject in the Subject line

    all of a sudden iCloud Mail will not let me enter a subject in the Subject line.  It even alerts me that there is no subject in the Subject line when i send an email but still wont let let the cursor enter anything in the subject line

    When you add an iCloud account with Lion or Mt Lion there's no need to add an incoming mail server if you are using the built in mail app. It is automatically configured for you.

  • How would I go about adding multiple rectangles using the same lines of code?

    How would I go about adding multiple rectangles using the same lines of code? I would prefer to just run through a set of code every time I need a polygon. If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.

    >>How would I go about adding multiple rectangles using the same lines of code?
    You could create a method that creates and returns x number of Rectangle elements:
    public IEnumerable<Rectangle> CreateRectangles(int numberOfRectsToCreate)
    for (int i = 0; i < numberOfRectsToCreate; ++i)
    Rectangle rect = new Rectangle();
    rect.Fill = Brushes.Blue;
    rect.Width = 100;
    rect.Height = 100;
    yield return rect;
    ..and then call this method from anywhere in your code:
    IEnumerable<Rectangle> rects = CreateRectangles(5);
    foreach (Rectangle rect in rects)
    //add to StackPanel or do whatever with the Rectangle elements:
    yourStackPanel.Children.Add(rect);
    >>If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.
    When adding Point objects to a Polygon you can only add one per call to the Add method but you could call the Add method inside a loop, e.g:
    for(int i = 0; i < 10; ++i)
    //add to StackPanel or do whatever with the Rectangle elements:
    Polygon p = new Polygon();
    p.Points.Add(new Point());
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't post several questions in the same thread.

  • How to login in command line by adding user/password in the same line

    is it possible in OSX to login in terminal by typing:
    +login username password+
    I tried many unix command and never find a command that can do that in one line, it always ask for the password in the second line.
    I need that to be used in Python application,
    or if there any possibility to write code in python to do that in OSX using python osx modules,
    while in windows it worked perfect by using win32API in Python.
    I hope Apple developers can help me with That
    Thanks

    This isn't possible because it would be a terrible security vulnerability--any process on the system can see a program's command line arguments. (Just type "perl -e 'sleep 5' & ps" in a terminal if you don't believe me.) If you want to log in like this, you'll have to open the "login" program in such a way that you can give it the password through its standard input.
    Also note, however, that "login" will not change the account your Python program is running as; it just starts a shell running as that account. If you want your program to run as a different user, you need to look into a set of commands and techniques called "setuid" or just "suid"; a Google search for "setuid python" should get you started. (I'm not a Python programmer, so I can't really tell you exactly how setuid works in Python.)

  • Adding Multiple Questions On The Same Line

    Hi,
    I am creating my first form from scratch and would like to know how to add multiple quoestions on the same line.  for example
    Home Phone                 Work Phone           Cell Phone                  Email Address
    I know it sounds pretty basic but I seem to be stuck
    Thanks

    Hi,
    Please refer to the following post:
    http://forums.adobe.com/message/5665660
    Regards,
    Brian

  • Send mail utl_smtp - The subject comes out blank

    Hi,
    The following procedure does work, however I can either send the Subject line OR the message body. If I send the subject first, the subject is sent. If I send the msg body first, then the msg body gets sent.
    Why can't I send both ? Please help.
    Thanks,
    Bob
    PROCEDURE send_mail2 (psender IN VARCHAR2,
    precipient IN vARCHAR2, psubject in VARCHAR2, pmessage IN VARCHAR2)
    IS
    mailhost VARCHAR2(30) := 'smtp.ny.drf.com';
    mail_conn utl_smtp.connection;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, psender);
    utl_smtp.rcpt(mail_conn, precipient);
    UTL_SMTP.DATA(mail_conn, 'Subject: ' || psubject || utl_tcp.crlf );
    utl_smtp.data(mail_conn, utl_tcp.crlf || pmessage || utl_tcp.crlf );
    utl_smtp.quit(mail_conn);
    EXCEPTION
    WHEN OTHERS THEN
    null; -- Handle the error
    END;

    Your message is send directly after the headers. Insert an extra \r\n, and you should be fine.

  • JSP for Vcard cannot strip carriage return in the last line of the file.

    I am using JSP to output a Vcard (http://en.wikipedia.org/wiki/VCard)
    The following code works great in Windows but fails on the mac:
    <%@ page contentType="text/x-vcard" %><%--
    --%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%--
    --%><%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %><%--
    --%>BEGIN:VCARD
    VERSION:2.1
    <c:choose><%--
    --%><c:when test="${not ((empty param.lan) and (empty param.fin)) }"><%--
    --%>N:${param.lan};${param.fin}
    FN:${param.fin} ${param.lan}
    </c:when><%--
    --%><c:otherwise><%--
    --%>FN:${param.org}
    </c:otherwise><%--
    --%></c:choose><%--
    --%>ORG:${param.org}
    TITLE:${param.title}
    TEL;WORK;VOICE:${param.phwork}
    ADR;WORK:;;${param.st};${param.city};${param.state};${param.zip};
    EMAIL;PREF;INTERNET:${param.email}
    REV:20080424T195243Z
    <c:out value="${fn:replace('END:VCARD','\\\r','')}" escapeXml="false"/>After some tests, I discovered that Mac (I used Tiger, latest update, not Leopard) needs extra white space and carriage returns stripped off. Once this is achieved, the vcard will automatically import into Address Book. I have followed other forums which advice on using JSP comments as in the code above. But for some strange reason the last line of the JSP outputs an extra carraige return. How do I get rid of the carriage return at the end of the file? the replace function from JSTL is not working.
    Edited by: shogo2040 on Dec 18, 2008 7:11 PM : I added more detail to the Subject

    I originally had that END:VCARD without any carriage return.
    But I still get an extra carriage return at the end when the JSP renders to VCF
    I'm using Tomcat running on Linux.
    I found this, article which implies (but does not explicitly say) JSP in general adds a newline to the last line:
    http://www.caucho.com/resin-3.0/jsp/faq.xtp (But its not tomcat either, so maybe this info is irrelevant).
    Edited by: shogo2040 on Dec 22, 2008 3:31 PM - changed rendered to VCF from rendered to JSP

  • Firefox will not search when a topic is typed into the search line

    I type a subject into the search line click search and nothing happens

    Hello docdick1969,
    check it in [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Safe Mode], select "Start in Safe Mode" and see if this happen again, if not see: [https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]
    also try to update to latest firefox 16.0.1, 15.0.1 it is unsupported
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • SAP Version to be added in the subject line while posting a question.

    Hi,
    We all have been posting and answering thousands of questions on the SDN. Many times I have seen moderators asking the person who posted a question to use a correct and informative subject line.
    With respect to that, I would like to suggest the moderators to add a rule in the rules of engagement asking the users to provide the SAP Version in the subject line while posting questions.
    This way the person answering the question can appropriately provide information based on that version only and would save the time and effort of everyone.
    Example subject line can be :
    ECC 6.0 Function module xyz is not returning correct results.
    I would like to know the opinion of other users too on what they think about this suggestion.
    Best regards,
    Advait

    In theory - a very good idea.
    In practice - hard to enforce.
    On second thoght, it could be a required parameter. It might have the added benefit of dissuading questions from people who can't figure out which version they have
    Rob
    Edited by: Rob Burbank on Jan 16, 2009 3:56 PM

  • Editing the subject line of a received email in Outlook 2010.

    I'm not sure if this is intended or not, but a coworker of mine pointed this out to me. Are you supposed to be able to edit the subject line in an email that you receive from someone, BEFORE replying to it? For instance if you double click on an email to
    view it in a separate window you can select the text in the subject field, edit it. and save it as the original.  
    Example here http://tinypic.com/r/2bdykh/7
    In this example the subject line originally read "This is a test.". I've deleted "est." leaving what you see.
    You can then save it so that it looks like the person who sent the message sent it to you with a completely different subject. (I can see where this could be used maliciously within the workplace or otherwise).
    Just something i was curious about. Any thoughts?

    Arjan is actually right. You can always edit the SUBJECT of a message.
    It is just not so obvious how you have to do it - although Arjan described it.
    This is because you first have to ENABLE editing of a message (email).
    1) open one mail you want to change by double-clicking it
    2) press the button which looks like a hyphan with a triangle under it in the top row on the right which opens a pull-down menu to access 'Customize Quick Access Toolbar'
    3) choose 'More commands
    4) customize the toolbar in the middle by 'choose commandos from': go to 'All Commands'
    5) choose 'Edit message'
    6) press the 'Add button' so that it gets added to the Quick Access Toolbar of an opened email / message
    7) confirm by pressing 'ok'
    If you now press the new (green) Edit Message button in the email you opened you can go to the subject line and change it to you needs, afterwards press the save-button
    -> the email gets saved with the new subject
    Once you enabled editing of an email you can easily do it for every mail without to running again through the whole procedure.
    Thanks Arjan for the hint - I was already searching since long for a solution of this 'problem'. I use it to rename titles of emails which had either no subject, a wrong or misleading title. This helps me to find them easier back.

  • Adding filename in PDF form and inserting the filename as the subject when emailing the form

    I have created a form in LiveCycle and have added 2 buttons - Save As and Submit by Email (created successfully thanks to the posts in this Forum).  Can someone please advise how I can:
    1.  Add the file name to the PDF document when the Save As button is clicked.
    2.  Use the file name as the Subject when the user clicks the Submit by Email.
    Thank you in advance for your help with this query.

    Here is a sample for your save as request.
    http://thelivecycle.blogspot.com/2009/11/save-form-to-specific-directories-and.html
    To determine the file name and use it in the subject you can use for example:
    var FileName = event.target.documentFileName;
    event.target.mailDoc({
            bUI: false,
            cTo: [email protected],
            cSubject: FileName,
            cMsg: "Bla bla bla...",
            cSubmitAs: "PDF"

  • Service Desk Mail - Modify the subject -adding ticket number and descriptio

    Hello,
    I have activated the automatic sending of email when a new ticket arrives into the Service Desk. I am using the standard notifcation smartform  However all the mails arrive in the inbox with the same subject, so no possibility of making a quick identification of the ticket.
    I heard that is possible to add additional fields in the subject of the mail using some "&" parameters.  However I do not have a clue where to modify and what type of & parameters are available.  Is that I need to copy and modify the smart form somewhere??
    I appreciate your inputs.
    Regards
    Esteban Hartzstein

    Hi Esteban,
    The subject line corresponds to the name of the smart form that you can maintain in the "description" field in the sap form builder. you can add dinamyc parameters to the subject by using the placeholder "&". e.g.: & | Action Required.
    On se24, copy the class CL_DOC_PROCESSING_CRM_ORDER into the customer workspace (ZCL_DOC_PROCESSING_CRM_ORDER). then edit it and navigate to line 185 and change the following:
    REPLACE '&' WITH ls_orderadm_h-object_id INTO ls_output_options- tdtitle.
    Other example to use as subject:
    Object ID + Priority + Description
    Field description value: &1 | &2 | &3
    On the class:
    REPLACE '&1' WITH ls_orderadm_h-object_id INTO ls_output_options- tdtitle.
    REPLACE '&2' WITH ls_activity_h-priority INTO ls_output_options- tdtitle.
    REPLACE '&3' WITH ls_orderadm_h-description INTO ls_output_options- tdtitle.
    More information on this on the book: SAP Solution Manager Service Desk - Functionality and Implementation
    Hope I can help.
    Regards,
    Ricardo

  • How can we extend the subject line using SO_NEW_DOCUMENT_ATT_SEND_API1??

    Hi,
    I am triggering a mail using the function module SO_NEW_DOCUMENT_ATT_SEND_API1, where in the subject of the mail is passed using the DOC_CHNG-OBJ_DESCR, here the object_descr can only accomadate 50 characters.
    But requirement is to have more than 50 characters may be 100 to 150 in the subject line.Please help me to extend.
    Thanks in advance.

    Hi,
    Searched in the forum for the above requirement but didnt find the required info..
    Please help me in finding a solution to this
    Thanks in advance

  • How can I edit the Subject Line of an email I've received?

    When the sender inserts vague or misleading text in the Subject Line (or leaves it blank), sometimes I'd like to edit it - makes organization and retrieval of information which might be in the email easier for me.
    I've tried opening the email file with a text editor (TextWrangler) and editing the "Subject" line. That partially works: When the message is open for reading, my edited Subject appears near the top of the message.
    However, when looking a list of emails in a Mailbox, Mail still displays the unedited Subject - which defeats my purpose.
    What am I missing, here?
    -gw

    Hi Gary, I think Mail is using stored info, not sure which of these two hold that, but...
    Safe Boot from the HD, (holding Shift key down at bootup), it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move these folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.

  • Hi guys i added a new mail account and now she i click new mail i can see 4 accounts, the first is right below the subject, and it' the old one and the new one, the other one is on its right and it's the old one and the new one. is it normal? Thanks.

    hi guys i added a new mail account and now she i click new mail i can see 4 accounts, the first is right below the subject, and it' the old one and the new one, the other one is on its right and it's the old one and the new one. is it normal? Thanks.

    sorry, correction,
    hi guys i added a new mail account and now if i click new message on the mail field  i can see 4 accounts, the first is right below the subject, and it' the old one and the new one, the other one is on its right and it's the old one and the new one. is it normal? Thanks.

Maybe you are looking for

  • PO: Error in Process in ECS

    I did RZ20 and following error message is appearing: "Access with 'ZERO' object reference not possible" and when I furhter go in details it tells me - Application error while updating purchase orders in the backend system. Any ideas why this is happe

  • Smartforms output in XDF format within single spool

    Hello, i have created a form which is called by a custom report. The report selects the data for different customers of the same company code and is then calling the form. The form is only opend and closed once for each run of the report:   Open form

  • SAP Content Server error 405    Method Not Allowed

    Hello Everyone We have installed SAP Content server 04s with SAP DB 7.6 build on Solaris platform.  We are trying to connect it through ECC. We have configured Apache web server on content server, and we are able to access it through http url. On ECC

  • How to disassemble Satellite L550-11H?

    Hi, Like the tittle says, I would like to know how to disassemble my laptop. I tried to remove all the screws but the damn bottom plastic didn't separate it self from the top plastic. Has anyone had this problem before?

  • Packaging Multi-SCO Captivate Projects - query

    Hi We are considering upgrading to the eLearning Suite so that we can use the Multi-SCO Packager.  For the timebeing I am tried using a free software called Relead Editor.  With this, when a learner clicks out of the course early, the next file autom