Subject Line

Ok, i have been trying to figure out how to add a couple of
text fields within the ?subject line of an outlook email. I have
the mailto address and i also want to incorporate 3 textfields that
the user submits upon completing the form. Everything is wrapped
within a <form> tag to keep unity and below is a sample of my
code.
<input name="Submit" type="submit"
onclick="MM_goToURL('parent','mailto:[email protected]?subject=Annual
Progress Statement');return document.MM_returnValue" value="Submit"
/>
Text
this input tag is associated with a button that is clicked
upon completion of the form. I was trying to add more content after
the ?subject=Annual Progress Statement just before the (')
Could someone help me, the answer my be really juvenile and i
may be overlooking the obvious.

You could only modify this markup using custom javascript.
It would be much better, though, to do this with a
server-side script rather
than the notoriously unreliable mailto:. Is that a
possibility?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"jbabyis4u" <[email protected]> wrote in
message
news:fcrc0t$8r0$[email protected]..
> Ok, i have been trying to figure out how to add a couple
of text fields
> within
> the ?subject line of an outlook email. I have the mailto
address and i
> also
> want to incorporate 3 textfields that the user submits
upon completing the
> form. Everything is wrapped within a <form> tag to
keep unity and below is
> a
> sample of my code.
>
> <input name="Submit" type="submit"
>
onclick="MM_goToURL('parent','mailto:[email protected]?subject=Annual
> Progress Statement');return document.MM_returnValue"
value="Submit"
> />
Text
>
> this input tag is associated with a button that is
clicked upon completion
> of
> the form. I was trying to add more content after the
?subject=Annual
> Progress
> Statement just before the (')
>
> Could someone help me, the answer my be really juvenile
and i may be
> overlooking the obvious.
>

Similar Messages

  • I am unable to email an image from camera roll. the image gets "stuck". cannot input email address or subject line. am unable to cancel and go back to camera roll

    i am unable to email images from my camera roll. the image gets "stuck". cannot insert email address or subject line. cannot cancel... return to camera roll.
    what to do. i tries taking new picture and sending it in an email... same thing... gets "stuck "
    Waht to do ?

    Hello lohmann8,
    Thank you for providing so much detail about the issue you are experiencing with emailing photos from the Camera Roll.
    The first thing I recommend is quitting and relaunching the applications on your iPhone:
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    You can find the full article here:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If you are still seeing the same issue after quitting and relaunching the Photos and Camera app, I recommend restarting your phone and then resetting if it's still not working:
    Restarting your device
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
    Press and hold the Sleep/Wake button until the Apple logo appears.
    Note: Reset your device only if you are unable to restart it.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    You can find the full article here:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If the issue persists, the last thing I recommend is backing up and restoring your iPhone:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Sending email using CL_BCS in the background with subject line 255 chars

    Hello Gurus,
           Following is the sample code,. When I run in the foreground, I am getting the mail, with proper subject line. However my output medium type is '5-'External Send#. When I am trying to run this in my output program, it is resulting in dump.
           When I keep 'COMMIT WORK',  I am getting a dump saying tText * Invalid COMMIT WORK in an update function module.*
           When I remove this 'COMMIT WORK', I am still getting the error, saying Screen output without connection to user. (The current ABAP program "SAPLSTXC" statements could not be executed.)
          Hoping for a quick solution.
    Regards,
    Shaheen
    REPORT  Z_CL_BCS_TEST.
    * Trying classes
    DATA: send_request        TYPE REF TO cl_bcs.
    DATA: li_main_text        TYPE bcsy_text,
          lw_main_text        LIKE LINE OF li_main_text.
    DATA: document            TYPE REF TO cl_document_bcs.
    DATA: recipient           TYPE REF TO if_recipient_bcs.
    DATA: sender              TYPE REF TO if_sender_bcs.
    DATA: l_mtitle            LIKE sodocchgi1-obj_descr.
    DATA: sent_to_all         TYPE os_boolean.
    DATA: bcs_exception       TYPE REF TO cx_bcs.
    DATA: lv_sub TYPE string.
    TRY.
    *     -------- create persistent send request ------------------------
        send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document---------------
    *     Email title
        l_mtitle = 'attachment'.
        lv_sub = 'Email Title : I want to try for a subject which is more than 50 chars. will this work?'.
        CALL METHOD send_request->set_message_subject
          EXPORTING
            ip_subject = lv_sub.
    *     Fill the body of the mail
        REFRESH li_main_text.
        lw_main_text = 'This is test email'.
        APPEND lw_main_text TO li_main_text.
        CLEAR: lw_main_text.
        lw_main_text = 'Regards'.
        APPEND lw_main_text TO li_main_text.
        CLEAR: lw_main_text.
    *     Create Email Object
        document = cl_document_bcs=>create_document(
          i_type    = 'RAW'
          i_text    = li_main_text
          i_subject = l_mtitle ).
    *     Add document object to send request
        send_request->set_document( document ).
    *     add recipient (e-mail address)
        recipient =
            cl_cam_address_bcs=>create_internet_address(
                  'Shaheen.Taori at solvay.com' ).           " changed the email id purposefully
    *     Add recipient object to send request
        CALL METHOD send_request->add_recipient
          EXPORTING
            i_recipient = recipient
            i_express   = 'X'.
    *     ---------- send document ---------------------------------------
    *    sent_to_all = send_request->SEND_WITHOUT_DIALOG( I_WITH_ERROR_SCREEN = ' ').
        CALL METHOD send_request->SEND_WITHOUT_DIALOG.
    *      EXPORTING
    *        e_sent_to_all = 'X'.
    *    IF sent_to_all IS INITIAL.
    *      MESSAGE 'Erorr while sending email ' TYPE 'E'.
    *      EXIT.
    *    ENDIF.
          COMMIT WORK.
    *   exception handling
      CATCH cx_bcs INTO bcs_exception.
        MESSAGE i865(so) WITH bcs_exception->error_type.
    ENDTRY.

    Try using method SEND instead of SEND_WITHOUT_DIALOG.
    Also try calling method SET_SEND_IMMEDIATELY before calling method SEND.
    Use below code lines,
    send_request->set_send_immediately( i_send_immediately = 'X' ).
    sent_to_all = send_request->send( i_with_error_screen = 'X' ).   " Instead of CALL METHOD send_request->SEND_WITHOUT_DIALOG.

  • Field Merge in Subject Line - Increasing the Hard Bounce Rate?

    Hey All,
    We did a little A/B test recently. By "little" I mean two different tests, 250 recipients in each test). We wanted to test the option to insert Field Merge in the Subject Line. We took 10% of 2 specific groups of costumers and sent the two options:
    1. Salutation LastName, Register Now and Secure a Tuition Scholarship
    VS.
    2. Register Now and Secure a Tuition Scholarship
    As said above, we did the same test twice to 2 different groups.
    The results was, unsurprisingly, in favour of the Subject Line with the Field Merge BUT - - - - - We saw that not only the Open Rates or Clickthroughs were higher, but also Hard Bounce rates were higher (3 Hard Bounces when we used Field Merge vs. 0 when we sent a plain text SL)
    Do you think that the usage of Field Merge in the Subject Line could be the reason for the higher Hard Bounces rates?
    Thank you,
    Ziv

    You should be able to get some more precise information from your Xorg logs, but I would bet it is related to the evdev driver. Some of the options in your xorg.conf no longer work with the latest version. For now you should be able to either map your mouse directly to the appropriate /dev/event* entry or change to the standard mouse driver, both of those methods should be in the wiki.
    You are supposed to be able to use the evdev driver without the input section of your xorg.conf by using dbus/hal autodetection, but AFAIK at the moment the xorg-server package still isn't compiled with hal support, so you would have to patch and rebuild the package.

  • Dynamic Subject Line not appearing in PO mail

    Hi Experts,
    In tcode ME28 when i get the list of POs to be released , I click on the release possible icon against the PO number. On clicking of this, a mail goes to the vendor of the PO.
    My requirement is to change the subject line of this mail.
    I have done all the required settings in NACE i.e. for this output, in the " Mail title & texts" , I have maintained the text and in the General data tab I have mentioned SAPMM06E as the program & TEXT_SYMBOL_REPLACE as the form routine.
    Also in the Mail tab I have done the same : SAPMM06E as the program & TEXT_SYMBOL_REPLACE as the form routine.
    But i am not able to get this dynamic mail text in the PO mail , instead of this text, the correspodnig PO number comes as the mail text.
    In there anything that I have missed out ?
    Please suggest.
    Thanks in advance  .

    Hey ,
    is there a code written which will is responsible for forming and sending this mail ? If so the you need to look inside this code and instead see where are you setting PO number in subject line. In that part of code  you need to a variable which will hold this dynamic text which you want to send as subject line.
    If you can share that code with me , I can help you further.
    Hope this is helpful.
    Regards,
    Uma Dave

  • I want to ask a question but is it supposed to go in this "Ask Your Question" field or should this really be a synopsis or a tersely worded teaser, like a "subject" line?

    Oh.
    When I pushed the "Ask your question of the community" I got this empty box. But I've already asked my question. Should I copy and paste it into this box?
    > I want to ask a question but is it supposed to go in this "Ask Your Question" field or should this really be a synopsis or a tersely worded teaser, like a "subject" line?<
    There. Now I have asked the same question, which is of questionable value, for sure, twice. So, if someone answers it, they will get twice the points. Right? Or is there another box for that? Should I paste the question into another box? Twice? 
    I've been around here for a l-o-n-g time, longer than ol' BenB by several years, so you'd think I'd know better.
    Maybe I do.
    bogiesan
    Message was edited by: David Bogie Chq-1, I blame all misspellings on my iPad's virtual keyboard.

    Don't you have a deadline?
    Oh, sorry, I thought this was an URGENT query because you have clients waiting.
    Keep calm, carry on.

  • 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.

  • RANT: Please post with a meaningful subject line

    This is an SQL and PL/SQL forum. Almost all posts will be people needing help with a query, or in a PL/SQL procedure, so subject lines like
    Stored Procedure
    Please share your valuable experience
    Need help on the below query
    error while running PL/SQL
    Query
    Help need in this query
    PL/SQL
    Query - Help
    Help
    are essentially meaningless (those just in the last few hours).
    If you're getting an error, put the error in the subject line.
    If your query is slow, first read When your query takes too long ... and if that doesn't help then post with something in the subject line to indicate it's a performance related question.
    If it's a "how to" question, use that e.g "how to calculate a rolling average".
    Oh, and if your question is how to find the second highest salary in the department, don't bother posting at all.
    Just a pet peeve brought to a head by this morning's threads.

    Agree and disagree with your comments APC.
    Yes, the clueless and unwashed will not even bother reading this posting - just as they will not be bothered by using a totally meaningless subject for their posting.
    But, I do not think we should simply 'let it be' (only John/Paul made that work and in a song). The forum is what we, the members, make from it.
    I think my continual rants on using "urgent" for a subject header have made a difference and many "got the point". So I do not see Dave's rant as pointless - simply addressed at the wrong audience. He should instead post a small rant to an applicable posting and "spread the message" that way.
    As for what we choose to read and not read.. some of us are here because we want to help. And a poster with a meaningless subject has a lessor change of getting his/her posting read by those who want to help.. as it is simply a nameless problem amongst other nameless problems.

  • Saving Outlook eMail to a hard drive folder with long subject lines

    I'm using Outlook 2010 on a WIN7 machine. I drag and drop eMails to folders on my desktop quite often and in the past (earlier version
    of Outlook) I would receive a warning that the file did not copy if the subject line was too long. When I drag and drop eMails with long subject lines now there is no visual warning or indication that the operation failed. I am aware of the file name/path
    character count limitation. My issue is the lack of a warning when the operation fails requiring me to have to check the length of the subject line before the operation or double check if the file is present after the operation. Checking after the operation
    is quite exacerbating when you are copying 15 - 20 files at a time. Is there a patch or something that can be done about this?

    Hi,
    We can also consider to get support about macro from MSDN forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Edge Transport Attachment stripping based upon an emails Subject line.

    I am running Exchange 2010 on-prem with a 2013 Hybrid (including a 2013 Edge Transport server for message handling between on-prem and the o365 tenant) connecting to an o365 tenant. I use EMC's SourceOne for archiving running on-prem. The o365
    tenant points to a mailbox on my on-prem Journaling server.
    What I am seeing is that when o365 forwards emails as attachments from the cloud back to the on-prem Journaling server it is examining the subject line of the message and making a decision to strip the attachment based upon the very end of the subject line.
    Example: A simple text message with a subject line of: "Check out the new web site at www.xyz.com"
    The Edge transport server is seeing this as being a ".com" attachment and stripping it off before it gets to the Journaling server. So it does not appear to be looking inside the message to see what it actually is and figure out that it is not
    a ".com" file but a simple text message.
    I have seen this with other file extension types as well. Such as ".exe" . It is also stripping off ".zip" attachments as well, but I understand that and not sure how to deal with it.
    Has anyone else experienced this and how have you dealt with it? Microsoft wants me to take the Edge out of play and go directly to from the cloud to an on-prem Exchange server. But that is not an option as the on-prem servers are not exposed to the internet.
    Thanks, Bob
     

    Hi BobSwe,
    Thank you for your response.
    If you have resolved this question, please mark useful replies as answer.
    Thanks,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • Javascript to pull a PDF field into the Subject line of email?

    I've created a fillable PDF form using Pro X.  I'd like to program the Submit button so that once in the email portion, the subject line would automatically pull 3 specific fields from the PDF file.
    Example:  After hitting "Submit"....once in the email, I'd like the Date, Vendor Name, and PO # from the PDF form to automatically pull into the Subject line.
    I have to PDF the complete document and go through the Desktop Email Application on my PC.
    Thank you!

    Hello Everyone,
    I am having the same issue as tlg814 with needing three fields to pull into the subject, and I followed the blue print of the code as well, but I am only getting one field to populate in the subject line.  I am using Acrobat XI. Here is my code:
    Mouse up> Run a JavaScript
    var parts = getField("SR#", "Urgency", "Ship To").value
    this.mailDoc({
    cTo: "[email protected]",
    cCc: "[email protected]",
    cSubject: parts,
    cMsg: "Please create a Parts Request for the items in this email. Thanks"
    Any thoughts as to why it is not pulling all three fields?
    Thanks

  • I've lost the use of predictive text in the subject line of gmail and I want to get it back

    I used to be able to hit a few characters in the subject line of a gmail compose window and it would bring up past subject lines with the same characters. That doesn't work anymore. How do I get it back? I've tried changing the settings under preferences/privacy/history but it doesn't seem to make any difference. Any ideas? Thanks

    See:
    *Firefox > Preferences > Privacy > Firefox will: "Use custom settings for history": "Remember search and form history"
    *https://support.mozilla.org/kb/Form+autocomplete
    This Gmail web page may be using autocomplete=off to prevent Firefox from storing form data.
    You can remove autocomplete=off with a bookmarklet to make Firefox store form data.
    *http://kb.mozillazine.org/User_name_and_password_not_remembered
    Note that Firefox won't auto-fill saved form data automatically when autocomplete=off is used, so you need to double-click the empty name field to get a drop-down list.

  • How do I create a dropdown in the Subject Line field while sending emails.

    How do I create a dropdown in the Subject Line field while sending emails as I send more than 300 emails with the same subject line everyday.

    Which webmail service do you use, gmail may have problems currently see thread
    '' Subject autofill feature stopped working in gmail for new subjects only - and I'm not the only one - help! {[https://support.mozilla.com/en-US/questions/793610 link]]''
    For general information see [[form autocomplete]] and [[Form autocomplete entries are not saved ]]

  • Why does the OPEN WEB LOCATION Box msg keep opening when I try tro type in the name of someone or type anything in the subject line of Yahoo mail? I have to ke

    When in Yahoo mail, the OPEN WEB LOCATION box opens for each letter I try to type in in the "To" line and/or the "Subject" line of any new e-mail to someone. I type a letter, the Box opens, and I cannot type anything in the e-mail window anywhere until I close the box. I close the box, type another letter, and the OWL Box open gain. It takes forever to type anything. This started when I updated Firefox to the new 21 version. I Uninstalled and reinstalled Firefox. No help. I uninstalled 21 and re-installed 19 (I was using 19 with no problems until today). No help. The problem will not go away. I note that others have complained of this problem. Is there a fix yet? I have been forced back to IE in the meantime.

    hello, you have two extension present in your profile (DownloadTerms 1.0 & WhiteSmoke New 10.16.2.509) that could be considered malware.
    please[[Reset Firefox – easily fix most problems|reset firefox]] and see if those entries are still present afterwards. also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there and run a full scan of your system with the security software that you have in place and different other tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] & [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner].
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]

  • I want to change subject line and save emails from others

    For instance my client may respond to an email question and I want to change the subject line because it includes an answer such as clients address, but I cannot figure out how to change the subject line and save it to my file folder I have for them.

    This add on claims to do that.
    https://addons.mozilla.org/en-US/thunderbird/addon/edit-email-subject/?src=ss
    There might be others but that is the first one that came up. I have never used it so I cannot speak for how well it works.

Maybe you are looking for

  • How can I save a photo received in an email?

    WHen I click on the photo and the Save icon, I'm told that the Gallery is not available.  The photo was taken with an iPhone and is aJpeg file.

  • Hyperlinks not saving

    Hi, I'm currently rebuilding my website with lots of hyperlinks taking you to pages that don't appear on the nav bar. All was fine in the beginning, but after putting 10+ links on the same page, all going to different places I find that they are not

  • Cant use scroll feature on my mouse pad(Labtop)

    Only under Firefox does this happen. When i move my finger to the right of the mouse pad i see the option to scroll up and down the page, but i cant do this when i use Mozilla, it was working fine before

  • Bringing dynamically created controls into scope

    Normally I can bring controls into scope in a function with the line var myControl = myControl; where myControl is the name of the control. If I dynamically create controls (called say cbx1, cbx7 etc. where the numbers are all different, but not nece

  • Serial Number on Reinstall

    Hi - I purchased the full version of Acrobat 6.0 a few years ago.  This summer I upgraded to version 9. No issues.  I've had to rebuild my hard drive (something became corrupted) so I need to reinstall all my software.  I can't find the original Acro