Auto save a copy of outgoing email in SharePoint 2010

Hi, 
I need to save a copy of an outgoing email from SharePoint Server 2010. So is there any option in SharePoint to save a copy as audit or do we need to write custom thing for this? Any idea how to achieve this .  pls share your thougths  if you done
this before or any ideas about solution approach also great help. 

One thing to note - there's a limit if you are using SharePoint Designer workflow to send the original email - it cannot email back to another SharePoint email-enabled list. You are  'protected' from yourself.
We had an instance where I needed data to cross site boundaries in a site collection, and I had to do it through workflow. So our 'hack' was to email another Exchange mailbox set up specifically to relay emails. That mailbox had a rule to forward the email
back into SharePoint.
Terribly clumsy but it works. A SharePoint workflow email cc's the Exchange mailbox, which then forwards the email back to an email-enabled discussion list used as an email store. 
Robin

Similar Messages

  • How do i save a copy of my emails on the server on a macook pro? I am having a problem when using hotmail on my new macbook, they say it is set pop3? i have not idea what this means!

    I am not very good on computers and need help, I have lost past history emails when i have used hotmail on my new macbook, they say it is not set right but i do not understand! they say I need to ensure the box 'save a copy to the server' is ticked but they can not help me locate this and I have no idea what to do, can anyone talk me through this please?

    Check your mail preferences. The example below is from the mail app that comes with mac. In my case I'm using yahoo mail which is a POP3 account. POP stands for post office protocol which is the set of rules used by a POP mail account to transfer mail. You can learn more about it here if interested. If the box below is checked, all the mail will be downloaded to your computer when you check your mail using the built in mail app and removed from the mail server. Here is another page to help you set up your hotmail account for use the the mac mail application. Hope this clears things up.

  • How to Create a Auto Generated number with some preceding text in Sharepoint 2010

    I am trying to create a auto generated number field in Sharepoint 2010 list item. My requirement is to have the following format number generated when new request is created in Sharepoint using form. Auto generated Ticket ID should be in the following format
    "IR13000" "IR13001" "IR13002"....... Please let me know how to get this done. I tried to use combination of default ID and Characters but its not working for new requests, its only reflecting for existing uploaded requests. I
    am trying this for taking up Ticket requests by filling up some fields in the form. Any quick help is much appreciated.
    Thanx

    Here are the steps:
    1 - Open your SharePoint site in SP Designer 2010.
    2 - Click Workflows and add a List workflow. Associate this workflow on the list where you want the Random Text to be generated.
    3 - Inside the workflow editor, select the Action "Update list item"
    4 -  Select 'Current Item'.
    5 - Click Add.. and select the field which needs to be updated with the Random Text. Make sure this column is not of type "Calculated" type, otherwise you won't see it in the list of the fields within the workflow.
    6 - Click "..." button in the next textbox which will open String Builder dialog box.
    7 - Type IR and then click 'Add or Change Lookup and select ID column from "Field from source". Hit OK.
    8 - It should look like IR[%Current Item:ID%]
    9 - Hit OK.
    10 - Save and publish the workflow. (Please note that currently this workflow is not set to auto run on creating new items. That's because we want to test it at this point of time).
    11 - Go to your list in SharePoint and create a new item. After creating, select the item and click Workflows and then run this workflow.
    12 - You should be able to see the text "IR1" in the designated column.
    13 - Once you see that it's working, go to SPD and set the workflow to run automatically on creation of the new item. Save and publish and then return to your list in SharePoint.
    14 - Create a new item there and you should see the Random value in the column.
    15 - You will also see the column in the New form. In order to remove it, go to List settings > content types > Item content type > and select Hidden for this column so that it doesn't showup in any form.
    Try it and let me know how it goes.
    Thanks,
    Ashish

  • How to copy Excel sheet data to SharePoint 2010 List?

    Hi,
       I need to export excel data to SharePoint 2010 list. I have created 22 columns in list which are of following Column types:
    Single line of text,
    Multiple line of text,
    Choice
    Number,
    Date,
    Person or Group.
    Now i need to export the excel data to SharePoint list.
    When iam trying to copy data from excel to List , it is showing as "The selected cells are read only".
    can someone guide on this to export spread sheet data to SharePoint list without importing Spreadsheet.
    Thanks in advance.
    Badri

    I've updated the example of using PowerShell to include a Person field (user field) and a choice field.
    The CSV file has the following columns:
    TRIP_NO
    VESSEL_NAME
    FLAG
    AGENT_NAME
    CURRENT_LOCATION
    RPT_DATE
    EMPLOYEE
    EMPLOYEE_TYPE
    #Get the CSV file and connect to the SharePoint list
    $vessellist = import-csv -Path C:\Temp\VesselInPortReport.csv
    $l = (Get-Spweb "http://devmy101").GetList("http://devmy101/Lists/smarInPort")
    #Get the lists EmployeeType field (choice)
    $employeeType = $l.Fields["EmployeeType"] -as [Microsoft.SharePoint.SPFieldChoice]
    #Loop through the items and add them to the list
    $r = 1;
    foreach($item in $vessellist)
    $ni = $l.items.Add();
    #Add the Title, using the rows VESSEL_NAME column
    $ni["Title"] = $item.VESSEL_NAME;
    #Add the "Date Recorded" field, using the csv rows "RPT_DATE" column
    [DateTime]$rd = New-Object System.DateTime;
    if([DateTime]::TryParse($item.RPT_DATE, [ref]$rd)){
    $ni["Date Recorded"] = $rd;
    #Add the csv rows "TRIP_NO" column to the new list items "Trip Id" field (SPFieldNumber)
    [Int64]$tn = New-Object System.Int64;
    if([Int64]::TryParse($item.TRIP_NO, [ref] $tn)){
    $ni["Trip Id"] = $tn;
    #Add some other text properties
    $ni["Flag"] = $item.FLAG;
    $ni["Agent Name"] = $item.AGENT_NAME;
    $ni["Current Location"] = $item.CURRENT_LOCATION;
    #Add user information
    $ni["employee"] = $w.EnsureUser($item.EMPLOYEE); #In this case, the $item.EMPLOYEE value from the spreadsheet is a persons name. Eg. "Matthew Yarlett"
    $employeeType.ParseAndSetValue($ni,$item.EMPLOYEE_TYPE); #In this case, the $item.EMPLOYEE_TYPE value from the spreadsheet is valid choice present in the EmployeeType list field. Eg. "Manager"
    #Update the item
    $ni.Update()
    Write-Host ([String]::Format("Added record:{0}",$r));
    $r++;
    Regards, Matthew
    MCPD | MCITP
    My Blog
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.
    I just added a webpart to the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

  • Copy all outgoing emails to some address. Possible?

    I need to copy all of the emails I write at work to gmail so that I can access them at home. "Bcc me" feature doesn't work for me because emails needs to be copied to a different email address. Rules are not applied to outgoing mail.
    Is there any way how I can do this?

    There is an alternative way to accomplish what you want that may or may not be preferable to what you've done. You can setup your account in Mail so that it uses Gmail's SMTP server instead. This will cause Gmail to save your message in its Sent mailbox on the server.
    In order to be able to use Gmail's SMTP server using another address, you must first enable that address in your Gmail Settings > Accounts page, and let Gmail validate it by verifying that you do indeed own it.
    The only drawback of doing this is that, although the message received will appear as having been sent from your non-Gmail address (i.e. Gmail won't change the From header if that address has been enabled in Gmail's Settings > Accounts page), anyone looking at the full headers would be able to see that it was actually sent from Gmail and what your Gmail address is.

  • How do I save a copy of my email to external storage

    Hi, My son gave me his old macbook air.  It has his old email files that I want to save.  How do I same them to an external file?
    Thanks, jefffromjuneau

    Depends
    If yoou only want copies of your pictures ten export to the external drive (see the user tip on exporting for details on the options available)
    If you want a backup for your iPhoto library it is buest to use ongoing, constant backup software like Time Machine
    If you want a one shot copy of your iPhoto library then
    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and thenrepeat to switch back to the main libary
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • Copy of outgoing email sent back to me

    Whenever I send an email from the mail app it sends a copy back to me. How do I stop this?

    Check the mail preferences. If you don't see anything then check with your ISP, it may be a setting they have.

  • How do I save a copy of IMAP emails to OMM folders?

    My goal is 2 fold:
    Use Mail client on my 3 platforms - iMac, IPhone and iPad -
    Be capable to see emails sent, received and filed on all platforms (and be capable of filing on all platforms)
    And finally - store copy of all sent and received emails on my iMac (OMM folders?) (AND would like to be able to see/access these folders on mobile platforms
    What solution/methods should I use?
    BTW - I have just switched to use gmail IMAP service - and have it installed and functioning on all devices (sent mail in sent folder, using Trash, etc.)
    Thank you for your help.

    Check your mail preferences. The example below is from the mail app that comes with mac. In my case I'm using yahoo mail which is a POP3 account. POP stands for post office protocol which is the set of rules used by a POP mail account to transfer mail. You can learn more about it here if interested. If the box below is checked, all the mail will be downloaded to your computer when you check your mail using the built in mail app and removed from the mail server. Here is another page to help you set up your hotmail account for use the the mac mail application. Hope this clears things up.

  • How to step Gmail from sending me a copy of outgoing emails?

    When I send an email to someone using gmail from my iphone, I get sent a copy. How can I stop this?

    Hello Michael Zimmer3,
    I keep mine on for record purposes.
    You might try accessing your gmail account
    on your desktop or portable and check your
    settings or contact gmail support:
    http://mail.google.com/support/bin/request.py
    Good Luck,
    A

  • Configuring outgoing email on premise other than port 25 in SharePoint 2013

    hello,
    I tried everything to get email alerts, but emails are not coming. I tried changing port number in IIS6 . I followed and saw many different articles on net to configure outgoing email settings. I followed the article here in the link "http://www.delphi-ts.com/blogs/lozzi/post/2011/02/09/Sending-SharePoint-emails-through-alternate-ports.aspx"
    , still emails are not coming. What am I missing here?
    Please help
    chirag

    Hi,
    According to your post, my understanding is that you wanted to configure outgoing email on premise other than port 25 in SharePoint 2013.
    As the article said, there wasn't a way for SharePoint to select the outgoing port.
    The workaround is to send Emails to SharePoint Server OS itself over port 25, and then Windows server  SMTP in turn route the Emails to Microsoft online over port 587.
    For more information, you can refer to:
    Step by step configuration of Outgoing Emails from SharePoint to Microsoft Online
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Outgoing Emails fails after Port 25 blocked by email administrator

    Hi, our email team administrator has blocked the port 25 and restricted user to use SSL port 465 instead. The share point SMTP email setup page only shows TLS encryption check box (no ssl encryption check box available)
    Is this a limitation on share point 2010 that only TLS encryption available? Please kindly advice.
    Thank you.

    Hi Layman,
    According to your description, my understanding is that you want to configure the SMTP to use port 465 for outgoing email in SharePoint.
    Per my knowledge, Exchange server will secure communication over any port, but will not use SSL, so there is only TLS encryption in SMTP.
    To use port 465, we can add the port 465 under Network tab to the Receiver Connector for SharePoint Outgoing email. And then TCP port number on Outbound Connections in
    DSMTP Virtual Server properties.
    More references:
    http://blogs.technet.com/b/tirumals/archive/2012/03/17/step-by-step-configuration-of-outgoing-emails-from-sharepoint-to-microsoft-online.aspx
    http://support.microsoft.com/kb/829721/en-us
    http://social.technet.microsoft.com/Forums/exchange/en-US/8dc08cf8-8662-4a02-a181-f821e8d59d06/exchange-smtp-using-port-465?forum=exchangesvrgenerallegacy
    For more information, you can post your question to the forum for Exchange: http://social.technet.microsoft.com/Forums/exchange/en-US/home?category=exchangeserverlegacy .
    More experts will assist you, then you will get more information relation to Exchange.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Issue with Copy of events from Outlook Calendar to SharePoint 2010 calendar(mapped in outlook)

    There is a issue while copying events in Outlook mapped SharePoint 2010 Calendar.
    This issue only seems to happen when user copies an event from his Outlook calendar to the SharePoint 2010 calendar. 
    He is able to create a new event in the SharePoint calendar from Outlook. 
    He tried below steps, but still no success
    1.
    Open your Outlook calendar.
    2. Open the event you want to copy.
    3. From the File menu, select Info.
    4. Click the Move to Folder button.
    5. In the Copy Items To dialog box, scroll down to the SharePoint Lists item and select the SharePoint calendar to which you want to copy the event.
    6. Click the OK button.
    7. Click the Yes button when prompted to continue. 
    Please let me know if there is any possible solution for it.

    Hi,
    I have done a test as your steps. I am able to copy an event from my Outlook calendar to the SharePoint 2010 calendar.
    1. I suggest you test in another compute, perhaps your Outlook results to that issue.
    2. Please create a new site collection, then test again, compare the result.
    3. Maybe it will take some time before the copied event displays in the SharePoint 2010 calendar. So, wait a minute, compare the result. 
    Best Regards,
    Wendy Li
    TechNet Community Support

  • Reader/Acrobat X - SharePoint 2010 - Cannot Save

    We get this error when trying to save a pdf document back into a SharePoint 2010
      document library: 
    After some investigation, we have narrowed the cause down to managed metadata columns in the document library:
    Library with NO managed metadata columns - no problems saving.
    Library WITH managed metadata columns (non-mandatory):
    Document has NO managed metadata property values - no problems saving.
    Document HAS at least one managed metadata property value - get error message above.
    Our client environment is Windows 7 and the above symptoms apply equally to both Reader X (v 10.1.1)
      and Acrobat X (v 10.1.2). 
    There is a workaround as described below but our users are not keen about the extra mouse clicks!  Hopefully someone from Adobe will read this and provide a suitable solution.
    Workaround:
    Manually check out the document.
    In the check out dialog, tick the Use my local drafts folder checkbox.
    Edit the document in Reader/Acrobat - it will save normally (to the local drafts folder).
    When amendments are complete, check in the document from the SharePoint document library (this uploads the edited document from the local drafts folder).
    In short, you have to download the document locally to edit and save it, then upload it back to SharePoint.

    Hi Kay,
    Did this ever get sorted?

  • I'm no longer able to copy photos from email to my iPad photo stream.  The Save menu doesn't come up like it did before.  When I press on the image, I only get the option to Copy, and I can't paste it into my photo stream.

    II'm no longer able to copy photos from email to iPa stream.  The Save menu does not come up Shen I press on the image like it did before.

    Hi beerexpert,
    I'm sorry to hear you are having issues with your iPad. If you are having unusual menu or option behaviour, you may want to try restarting/resetting your device, as outlined below:
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    You may also want to double-check that you have available space, as noted here:
    See how much storage you've used on your iPhone, iPad, and iPod touch - Apple Support
    Regards,
    - Brenden

  • How do I save to outgoing email attachments folder in 8 as I did in 5?

    I just upgraded from PSE 5 to PSE 8 and I use Incredimail, not Outlook.  In PSE 5 there was an option to save outgoing email attachments to a folder for subsequent manual attachment to my email message.  The online help seems to suggest this as the solution as well.  However, I cannot seem to figure out how to set this up in PSE 8.  In prefrences, the only options are Outlook, Outlook Express and Adobe Email Service.  When I go through the routine of sending an email through Outlook (which is installed on my computer but which my wife does not use), the attachment can be found in a very deeply rooted Temp subdirectory.  In PSE 5 I could cause it to be saved in a subdirectory under My Pictures/Adobe directory sorted by date of creation of email attachment.  Can anyone please advise how to accomplish this in PSE 8?  Your assistance is greatly appreciated.  Thanks.

    That's an application by application feature/standard that they need to adhere to. I have no problem with Photoshop doing what you describe. Check your Photoshop Preferences. Does this happen in every application?

Maybe you are looking for

  • ASSEMBLY LANGUAGE FILE TO .CLASS --- URGENT!!!!

    Can someone please tell me how to convert a MIPS assembly language file to a .class so I can run it in a JVM? It's URGENT (there's a bus about to hit me and the driver will only stop if I can tell him how to do this).

  • I want to erase the new 8.0 version and go back to the last version so I can have my tabs and google back! HOW!!

    I just downloaded the new 8.0 version of Firefox, but all of my extra tabs, auto fill, Google search tool bar, etc, etc, are gone and I want them back!! How do I reverse back to the last version of Firefox? I tried "RESTORE" to the day before on my c

  • Invoice not displaying in workflow

    Hi Guys, I have an issue with a website that I have been left in charge with. In the eCommerce area of the site a user will place an order and once it has been paid a workflow email is then sent. This is fine. The issue is that the invoice details ar

  • J-2IRG1BAL Entries for 641

    Dear All, J_2IRG1BAL Table  is not updating for the mov type 641. Although in Table J_1IRG1 Table is updated for the above movement type for consumption. Please suggest how to update the table for mov type 641............ Thanks & Regards Akshay Sonu

  • Problem Elements 10 Organizer

    My Elements 10 immediatly defaults to "Elements 10 has encountered a problem and has to shut down" whenever I try to work in that area.  The Edit area appears to work correctly.  I am operatiing Window XP how do I corredt this.