Get Data in PowerBI from email Attachments - email

I receive periodic attachments from a specific email address. This email attachment is a 100kb CSV file.
I have been able to connect my Exchange account and get the specific emails as the source in Power BI.
But I am unable to extract the CSV attachment from these emails and use them as the source.
Could you please suggest a solution for my case?

Related

Extract data from email inbox

I have several thousand emails in my Thunderbird email inbox. Each email includes details about orders I've sold. The header includes the SKU and so does the email contents.
I'd like a way to extract the header details of all my emails so I can post in Excel. I need to be able to extract the SKU's from all the emails in a reasonable manner so I can use this data.
Is this possible? Is there a way to simply copy the headers of all my emails in my inbox so I can paste in an excel spreadsheet?
You would have to export your emails to gmail, then export the emails as .csv, from gmail. then you can load them into excel. That's how I've done it in the past.

Can I post a new topic on a google group using Go?

I'm writing a program that should send emails to multiple users with content extracted from an excel spreadsheet. I know how to do this using the net/smtp package in Go, but I would like to know if it's possible to send an email with the sender being a google group (i.e googlegroup#gmail.com) instead of my email without resorting to using the gmail API? Currently I have a working program that can log in through an email and password, which is then used for auth credentials, but seeing as that google groups don't have the same kind of interface I'm not quite sure how to change it so emails are sent from a group instead of an individual user.
Each google group should have an email address associated with it. golang-nuts is golang-nuts#googlegroups.com for example. Any mail sent to that should be posted to the group, assuming it is from a member of the group.
In order to send from your own gmail account, you can use gmail's outgoing smtp feature with the net/smtp package. Configuration is explained better on this digital ocean post

Certain line in email message grabbing software

Is there a way to grab the email messages from outlook.com and store them in a txt or csv file as text? Is there a software/freeware that can do this?
MSN/Outlook.com offers no API that let´s you achieve this. If you really need to extract email addresses from incoming emails on your msn account you will need to use Imap to get the messages and parse them through php or .NET or likewise.
I really see no other way.
You might want to read more here for php examples.

Take data from an email and upload it to Microsoft Sharepoint 2010

I have an email that arrives every day at 5:00 PM which reports the amount of inventory in stock everyday. Is there a way I could upload the data from this email into Microsoft Sharepoint 2010 ? I searched Google and StackOverflow but didn't find a solution to this.
Thank you in advance. A high level solution or a detail solution on how to do this would be extremely helpful.
SharePoint has the ability to receive messages and documents via e-mail through functionality called Mail Enabled Libraries.
First, you have to configure incoming email, which is a bit of work. Once SharePoint is configured to receive email, you have to configure a list to receive email.
References:
http://davecoleman146.com/2010/10/20/how-to-setup-mail-enabled-document-libraries-in-sharepoint-2010-part-1/
http://technet.microsoft.com/en-us/library/cc287879(v=office.14).aspx
EDIT
The manual process to upload a document would have the following steps:
Check email
If the email is there, save email to local file
Upload file to SharePoint
If you want to automate this process, I recommend PowerShell as its powerful yet easy to use.
Learning PowerShell: http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx
Checking Email with PowerShell: How to check an exchange mailbox via powershell?
Saving an Email with PowerShell: http://social.technet.microsoft.com/Forums/scriptcenter/en-US/335a888b-bf85-4a36-a555-71cc84608960/download-email-content-text-from-exchange-ews-with-powershell?forum=ITCG
Uploading a file to SharePoint With PowerShell: http://social.technet.microsoft.com/wiki/contents/articles/19529.sharepoint-2010-upload-file-in-document-library-using-powershell.aspx

Is it possible to send multiple email attachments with zend_mail?

I found several examples of sending a single email attachment using zend_mail. But I cannot figure out how to send multiple attachments. Can someone share how to do this if it is possible. I have sendmail installed on the server.
Yes its possible to send more than one attachment in a Zend_Mail_Message.
Depending on what method you use for creating attachments, just call $mail->createAttachment() once per attachment, or create all of your attachments as Zend_Mime_Part objects and call $mail->addAttachment($part) once for each attachment.
See Zend Mail Attachments for examples. Just repeat the example once for each file you want to attach.