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.

Similar Messages

  • Can I enter a subject line into automated emails from the web?

    Hi everyone
    I'm setting up a button on my website to enable visitors to subscribe to my mailing list.
    The button opens up a new email, addressed to me, which the visitors will send back to me, thus giving me their email address.
    Is there any way I can fill in the subject line for these emails so it says something like "Add me to your mailing list".
    I suppose it's a bit like when you email photos from iPhoto and the subject line e.g. "10 great photos" is already filled in.
    Would really appreciate any advice.
    Thanks in advance

    You need to break it down into several pieces:
    1. An event that causes mail to be sent.
    2. Creation of the content to include in the mail.
    3. Creation and sending of the mail message.
    JavaMail will help you with #3. The rest are up to you.
    JavaMail comes with several examples that show you
    how to create a mail message and send it, given the
    email address of the recipient, the content, the mail
    server address, etc.
    There's also pointers to many documents and tutorials
    that will help you learn JavaMail. See the JavaMail
    web site. And don't forget to read the FAQ.
    If you have more specific questions, feel free to
    post them here.

  • Can I script an email button to put one of the form fields in the subject line and to name the form?

    This is a fillable form on a website.  We want people to complete the form, then click on the email button to send it to us.  Prefer to have the "name" field populate in the "subject line" of the email, and also rename the form that same field name.  Is that possible?

    In the sample I used the below syntax to send an email..
    event.target.submitForm({cURL:"mailto:"+ strToAddress + "?cc=" + strCCAddress + "&subject=" + strSubject + "&body=" + strMessage,cSubmitAs:"PDF"});
    The highlighted ones are local variables which will hold the value from the form fields.
    If you want to get the Subject from Name field in the form, use some thing like this.
         var strSubject = name.rawValue;
         //and then pass the value to the code.
         event.target.submitForm({cURL:"mailto:"+ strToAddress + "?cc=" + strCCAddress + "&subject=" + strSubject + "&body=" + strMessage,cSubmitAs:"PDF"});
    Hope this helps..
    Thanks
    Srini

  • Reset Password email:  subject line and body

    For an email that is sent from this page:
    Home>Manage Workspaces>Manage Developers and Users>Reset Password
    Question: Where/how can I change the subject line and message-body contents for this email

    I would like to customize the subject line and body. for example...
    Current Email:
    Subject: Your password has been changed.
    Body: Account password changed for user CXXXXX.
    I would like to modify to:
    Subject: Your 'Oracle Application Express' password has been changed.
    Body: 'Oracle Application Express' Account password changed for user CXXXXX

  • "I want to draw a line, and it will highlight when I click it."

    I am currently working on a project right now. My project is a structural analysis software for civil engineers. Our project is already at it's infant
    stage of development. I am having trouble with how to implement drawing on a canvas. Heres the specs:
    -There are nodes on the drawing board illustrated by dots.
    -Lines must be drawn connecting the nodes.
    -Nodes must be a separate object where it could respond to mouse
    events.
    -Lines must also be a separate object where it could respond to mouse
    events.
    -Nodes and lines contain mathematical attributes, color information.
    -I can instantly delete a line, or change its attributes by selecting
    it.
    Heres what I have imagined:
    -I am going to draw my Nodes in a JPanel which implements a
    mouseListener.
    -Whenever I want to add nodes to the drawing board, I only have to add
    the Node objects i created.
    No problem with the nodes. Problem is in the lines i will be drawingconnecting one node to another.
    -I tried manual live drawing of the lines as the mouse moves. Now its
    flat on the drawing board. It can't be touched!
    -I still don't have any idea how to implement the line that it could
    respond to mouse events.
    -If I try to draw it in a JPanel with mouseListener, a JPanel is square
    so if I move my mouse to point in to the line drawn on the JPanel, it
    will already respond before the mouse could reach the line image. One
    thing also, it could overlap other JPanels.
    -The JPanel idea came up to my mind coz I thought these objects could
    be
    selectable custom components.
    -Now I realized JPanel is not the ANSWER!
    In simple saying:
    "I want to draw a line, and it will highlight when I click it."
    Stubborn Newbie,
    Edgar

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class SelectingLines extends JPanel
        Line2D.Double[] lines;
        int selectedIndex = -1;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            if(lines == null)
                initLines();
            for(int j = 0; j < lines.length; j++)
                Color color = Color.blue;
                if(j == selectedIndex)
                    color = Color.green.darker();
                g2.setPaint(color);
                g2.draw(lines[j]);
        public void setSelection(int index)
            selectedIndex = index;
            repaint();
        private void initLines()
            lines = new Line2D.Double[3];
            int w = getWidth();
            int h = getHeight();
            lines[0] = new Line2D.Double(w/8, h/8, w/3, h/6);
            lines[1] = new Line2D.Double(w/3, h/6, w/2, h/2);
            lines[2] = new Line2D.Double(w/2, h/2, w*5/8, h*7/12);
        public static void main(String[] args)
            SelectingLines selectPanel = new SelectingLines();
            selectPanel.addMouseListener(new LineSelector(selectPanel));
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(selectPanel);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class LineSelector extends MouseAdapter
        SelectingLines selectingLines;
        Rectangle r;
        final int S = 4;
        public LineSelector(SelectingLines sl)
            selectingLines = sl;
            r = new Rectangle(S, S);
        public void mousePressed(MouseEvent e)
            Point p = e.getPoint();
            r.setLocation(p.x-S/2, p.y-S/2);
            Line2D.Double[] lines = selectingLines.lines;
            int index = -1;
            for(int j = 0; j < lines.length; j++)
                if(lines[j].intersects(r))
                    index = j;
                    break;
            if(index != selectingLines.selectedIndex)
                selectingLines.setSelection(index);
    }

  • Email response with changed subject line, disappears.

    I "replied" to an email, but changed the subject line and then entered "send". The email disappeared. It did not appear in the sent folder. Was this because I changed the subject line?

    Welcome to  Discussions!
    Check your Junk folder. Something about the email is probably making the junk filter think it's just junk. If it's in there, you can mark it 'not junk' to help the filter learn it's a valid email.

  • I got an iPhone 4 a week ago. I synced my iTunes once and now I want to change what albums and playlists are on my phone. When I try to do this, iTunes threatens to remove all my apps. Of course, Apple's support is no help.

    I got an iPhone 4 a week ago. I synced my iTunes once and now I want to change what albums and playlists are on my phone. When I try to do this, iTunes threatens to remove all my apps. Of course, Apple's support is no help. I know there has to be a way to add and remove whole albums and playlists like on the music tab on the device, so please don't tell me to uncheck/delete everything from my iTunes that I don't want and re-sync. That is not helpful and not the issue. How do I get around it threatening to remove all my apps?

    On the MacBook, go to System Preferences > Security & Privacy > Privacy > Advanced > Disable remote control

  • How to Change Outlook Default Folder for Insert-Attachment and Save Email/Attachemnt while Outlook is open (VBA)

    Hello,
    Office 2010 32bit, VBA
    Is it possible to programmatically do the above while Outlook is running?  If so, I'm hoping to make that change from a Word macro.
    I tried tinkering with the reg key and that doesn't work because it appears Outlook only respects it at startup time. Similary changing Word File-options-location of documents is respected only when Outlook starts.
    I'm looking to seamlessly keep Outlook's default folder in sync with Word's default folder as the users change working folders in Word, which they do many times per day (and they chose the folder among a couple of thousand possibilities).
    I'm hoping there is a difficult-to-find Outlook object I can manipuate to get to the end result.  IF there is such an Object I have been unable to find it.
    Many thanks!
    Julie

    Hi Julie,
    Based on my research, I think outlook object model doesn’t provide the way to change the default folder for insert attachment and save email/attachment.
    The way to change it is that we need to modify the registry setting and the outlook app should be restart.
    # How to set the default attachment folder in Outlook
    https://support.microsoft.com/kb/252732?wa=wsignin1.0
    You may create the add-in to custom these actions (e.g. attach attachment, save email)
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    Does this involve iPhoto in some way?

  • Hi, I have moved to India from france and I am trying to update my payment options to the Indian visa card but it seems that no matter what I do I cant do it. I dont want to create a new ID..Plz Help!!!Just want to change my location and my payment detail

    Hi, I have moved to India from france and I am trying to update my payment options to the Indian visa card but it seems that no matter what I do I cant do it. I dont want to create a new ID..Plz Help!!!Just want to change my location and my payment details!! thanks in advance!!

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then seeRecover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • Hey,i want to change icloud account and my old apple id is stolen what should i do ???!!!:S

    Hey,i want to change icloud account and my old apple id is stolen what should i do ???!!!:S.

    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    lmerchant wrote:
    My new phone has an old apple ID associated with iCloud only.  I cannot delete the account as it has "Find my iPhone" turned on. 
    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818

  • HT3702 i want to change my region and i don't know how to get rid of the remaing amout from my gift card ($0.48)

    i want to change my region and i don't know how to get rid of the remaing amout from my gift card ($0.48)

    Request that iTunes Support zreo balance your account.
    iTunes Support -
    http://www.apple.com/support/itunes/

  • HT5312 i want to change security questions and you told me to sent an email to be change and nothing sent to my email

    i want to change security questions and you told me to sent an email to be change and nothing sent to my email

    If it hasn't arrived after a few hours and isn't in a spam filter, you need to contact Apple. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (90777)

  • HT201303 I want to change my questions and answers apple account?

    I want to change my questions and answers apple account?
    I just can not buy anything, because when I buy it asks questions and answers from my account and I forgot

    It got sent to a different email address, or got caught in a spam filter, or something’s wrong at Apple’s end. You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (116802)

  • HT4098 I want to change my store and it says that I have a 0.11$ credit and should spend it how before changing stores how can I do it?

    I want to change my store and it says that I have a 0.11$ credit and should spend it how before changing stores how can I do it?

    You can use your remaining store credit by purchasing an item, and paying the extra amount using a credit card, debit card, or if your country's store supports it, your PayPal or Click&Buy account.
    I you don't have an alternate payment method you can provide, then you will need to contact iTunes Store Customer Support via http://www.apple.com/support/itunes/contact/

Maybe you are looking for

  • Double-click to open file does not work

    I have Windows XP, ID 3.0.1. When I either double-click an INDD file or try to open it via Start>Documents, I get a dialog box: InDesign_US_R - InstallShield Wizard, Location to save file, etc. What do I do with that? These files open normally if I o

  • Photo slideshow app?...

    Hi all, I'm after an app which can create some very simple photo slideshows, but with a few specific functions. a) I want to be able to change to the next photo manually by a click - I'm not interested in being able to set a certain time, but manuall

  • Spool to HTML using an FM

    Hi Experts,               Please help me.  I need an HTML function module that will convert the graphical display of a spool into an HTML format.  Please help me how I can go about it step by step.  tHanks.

  • I cant turn on the built in camera on my imac

    I cant turn on the built in camera on my imac

  • My macbook pro can't detect the NAS after the NAS reboot.

    After I reboot the QNAP NAS, my macbook pro can't detect the NAS. I can't find the NAS drives in Finder even I input the new IP address. I remember my macbook pro was able to detect the NAS automatically before. Please help.