We receive vendor confirmation of file feeds that we send out. Some of our vendors will only send the confirmation through email. I am trying to find some sample VB code that I can use to try and use, that I can schedule to go out and query an inbox and see if there is an email from a certain account and I then return the message body. A lot of the articles that I have found discuss using Web DAV, but I am unfamiliar with it as well as trying to query Exchange Server. I have found documentation for the apis for the new versions of Exchange Server, but I am having a hard time finding it for Exchange 2003.
What ultimately helped me answer my question was this book "CDO & MAPI Programming". You can download the sample code from Here. Chapters 6 and 7 from the book are were really helpful in figuring this out.
Related
Under the email collaboration in Defender365, there are a set of reports that report things such as malware detected in emails, spam blocks, etc... that I'd like to pull that aren't available on the two APIs https://api.security.microsoft.com/api/incidents or https://api.security.microsoft.com/api/alerts.
Is anyone aware of an API with which I can pull this raw data so that I can use it in my already existing data visualization tools? Much appreciated,.
I tried using the existing APIs but they didn't come back with the intended results and the documentation doesn't seem to point to where one can find this.
You may find something here:
https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/management-apis?view=o365-worldwide
Although I will say that after a quick skim, it doesn't seem that Microsoft exposes that data. Microsoft documentation surrounding this API also seems to be lacking. They will hopefully update it in the next few months as they feel the squeeze from their customers as they deprecate other modules/APIs.
Would it be possible to use this API to grab specific text out of Teams conversations when someone messages you, and to automatically send that to an Excel file?
More specifically, if someone sends a message with a certain keyword such as "JJJ" in the message, it will copy the entire message to an Excel file on a shared drive.
Would this API work in an Enterprise environment?
Oh and I'm somewhat new to Python so no offense taken if this is a stupid question :)
I understand that similar questions have been asked before on Stack Overflow and all over the internet, but my situation is a bit unique. Let me give some context:
I want to make a macro/program that automatically downloads attachments sent from a set of emails (according to date) in a specific folder on the Outlook Web App. The only issue is that this is for my workplace, and the IT department is refusing to give me the password for the outlook account which makes it difficult to sync up the Web App to the on desktop application (I am a pharmacy student who works at a Chemist Warehouse and I'm just doing this as a local pet-project because lockdown is making me bored, it would not be used for all stores).
I have come up with an idea for the solution, essentially I want to use the urlmon ability of VB.Net to download the attachment as a file from the web. I was thinking if I could put a Web Browser control on the form, make it invisible and when the program loads up it automatically goes to the store email (I can get the url), to the appropriate folder. I then want to be able to read the HTML content perhaps? and then download any and all attachments in all emails received today for example in that folder.
I understand this is a unique and weird situation, so any help is much appreciated. If there are any further questions please feel free to ask and I will answer to the best of my ability.
Thanks in advance :)
This issue has been solved now. I used the Selenium Web Driver, integrated it to VB.NET and then used it to scrape the email. Feel free to comment if you wanna know how I did it. I'm gonna close this question thread now :)
i'm using Rails 3.2 and i come cross a problem to find solution like github email system.
I want to make functionality in my Rails app Forum like if there are 10 members of one forum group and if any one reply through email the reply quotes should be post on all forum groups.
For example if we are 4 persons work on a github repo. And when one email come to all persons and if anyone reply of mail using gmail reply link the email goes to all persons who are working on this repo.
some forums also use this functionality.
But i'm thinking that how control come to my app through gmail when anyone reply through gmail or anyother mailing server. i'm using gmail account currently.
Any ideas , blog posts ,refrences?
Thanks
Basically you're asking, "how can I have dynamically generated and maintained email lists?", right? This is a deep, deep problem space. I built just such a system a few years back, and it was a nightmare. Email is very complicated. Doing mailing lists right is very, very hard. You need to deal with:
Filtering out out-of-office responses
Re-writing the emails to resend them
Setting the proper mail headers
Dealing with attachments
The hundred and one types of email encoding
Outlook... oh god, Outlook
It's not an easy problem to solve. My recommendation would be to google around for a 3rd party provider with a good email list management API that you could pay to handle this for you.
Rolling your own would be a last resort...
I am using 8.0.1 SP1.
I have not been able to find a definitive answer for this so far. Does the messaging server control have an option for notifying the user via email that a message has been sent to them? Email is set up for the site and working. In my site, I have community notifications set to email in my profile. I have ek_EnableMessageBoardEmail set to true in web.config. I do realize that there is a difference between message board and the messaging server control but I am trying everything. Is this possible without coding the functionality? If not, can someone point me toward some starter code?
I also posted this question at http://dev.ektron.com/forum.aspx?g=posts&t=41480
Thanks.
Zach
No this is not possible. The Ektron Messaging control can only send internal messages within the CMS to other users. The server control produces markup that looks a bit like it might be email but it is not.
The Messaging control does have the ability to send an email to a community group but not individual users.
See Ektron's documentation here.
You will have to code your own custom solution to this.