Move Email with special attachments to another folder Outlook 2010 with powershell - email

Does anyone know if it it possible to move a received email with attachments, other than .pdf, ex. .txt files to antoher folder than the inbox in Outlook 2010?
I can't find something about "sort by attchement" via powershell.
I hope some of you have some inputs.

I had to do a similar task recently and learnt from this tutorial, which includes a script you can download to modify for your needs:
http://gsexdev.blogspot.com/2010/01/writing-simple-scripted-process-to.html

Related

Thunderbird: How to send a mail to all receivers of a folder

does anybody know a way to copy all the the receivers of a specific (sent) folder in thunderbird? I want to send an email to all of those receivers. I tried FiltaQuilla Addon, but unfourtunatey it can only add all the FROM-adresses to a list in the adressbook. The "FROM" is always me, this doens't work out for me.
Thanks
Just after posting the question I remebered the plugin "ImportExportTools" and found the new version "ImportExportTools NG". With this addon I can export a complete folder as CSV file (second csv option), open the file with Libre Office Calc, select the whole column "receiver", copy it and paste it to the BCC field of a new email. Not the nicest way, but it works.

Outlook export file — shut down Outlook account

My university deletes students' Outlook email account after they graduate and so I am exporting my inbox at a .olm file.
I figured this would be sufficient to save my meaningful emails that I want to save, but I wonder how I will ever open the .olm file if the account itself will be deleted...
Any ideas/info?
Cheers
OLM files are used only by Mac as Database file by Microsoft Outlook and can't be opened by the Windows version of Outlook because the Windows version uses .PST files rather than the OLM format.
assuming you have mac if not then To open OLM files in Windows, you can first convert the OLM file to the PST.
But there are other ways to save Outlook emails
Text only format
Outlook Message Format .msg – the older version of .msg
does not support the full range of Unicode characters.
Outlook Message Format – Unicode the newer of .msg that
includes Unicode characters.
I will use this .msg format. These days ‘plain’ can have Unicode for emoji etc.
Save to Word
Outlook Template .oft to make a template for new emails.
HTML – a web page version of the message
MHT – also a web page but with images etc embedded into a single
file.
making the subject line of the message the file name.
Remember all the above formats are indexed by OS, You will be able to find a saved message by searching words in the message.
Save to PDF
PDF is another way to store ‘permanent’ or archival documents.
look into examples like python or VBA code that can help you save emails to the format you need.

How to download files from outlook using powershell

I want to download the files from the particular folder in the outlook(take folder name as Files).
I receive files daily and want to download the latest one.
I would like to use PowerShell script that can go through emails in the Files folder and save the latest attachment by seeing the subject line(For eg if subject line contains "Daily files")into the folder "c:\Files"
I am new to this and have tried reviewing other comments, but not able to get the required code.
Any assistance would be greatly appreciated
As I understand, you would like to download the attachments of Email from special folder in Outlook. I'm not sure that if you checked this link:
How do I Save Outlook Attachments using Powershell?
However, you could also use the VBA code to achieve your needs. Please see the following link:
Download attachments from specific folder in Outlook

How do I import a .pst file into Outlook online?

How do I import a .pst file into Outlook online? I have downloaded a Outlook .pst file but I wish to view it on my Outlook online. How do I do that? If that is not possible, how can I convert that into a readable file such as text or pdf? thanks
This is not a programming question. That being said, open the PST file in Outlook (desktop client, not web), then Ctrl+drag (to copy) folders or messages to your Exchange mailbox.

powershell script to read contents from Excel and send email

I have a Excel sheet having the details of mail ID, mail subject and mail content. I need to write a power-shell script. When it is ran, mails have to be sent to mail IDs present in the Excel sheet with the corresponding mail subject and content. Help me in writing a power-shell script. Even a ready-made code would be appreciable.
TIA
Well, I think that you should have at least something. This is not the place where you will find someone who will write you the whole script.
to check the code and help you, yes, but not to write from scratch.
I would search on github for already written scripts, or Microsoft Technet Gallery: Microsoft Technet Gallery
To search the Excel file, first you could use Get-Content, and then use a Select-Object cmdlet to select the values you want.
After you find what you need, you can use Send-MailMessage cmdlet to send an email to recipient.