Questions tagged [inbox]

236 questions
0
votes
1 answer

Documents/Inbox folder for opening file from another App

I registered my app to associate some filetypes. so when the file comes in the mail attachment, I use my app to open the file. My app will automatically create a "Inbox" folder inside my Documents folder, and save the file in "Inbox". This Inbox is…
Cullen SUN
  • 3,517
  • 3
  • 32
  • 33
0
votes
1 answer

How to list all Resources in Exchange that has an "inbox rule" setup

I was wondering if someone can help me figure out the Powershell code needed to list the resource names of all resources / resource calendars in exchange that has "inbox rules" defined. These inbox rules are accessible in ECP by going to "OTHER…
Boof
  • 45
  • 6
0
votes
1 answer

Sort emails if the attachment is other then PDF or doesn't have any attachment

I'm working on a VBA script for Outlook, that sorts emails so only emails with PDF files are in the inbox. I have thanks to a previous answered question in Stackoverflow gotten this VBA script working and doing the tasks. Sub MoveMail(Item As…
0
votes
2 answers

how to open Gmail inbox and readmail with selenium tool

i' m testing my web application with selenium. When a user registered, an activation link will sent to user mail id. now i' m able to login to gmail account and unable to pen inbox using selenium. Is there any solution to solve this problem? thank…
siva565
  • 499
  • 2
  • 12
  • 25
0
votes
1 answer

Changing part of text to a different color in an input

Am a newbee to javascript but have plenty of experience in VB, C, and even 86 assembler. Maybe I am trying to do the impossible in porting a VB app to js here. Basically, I need to change the color for only part of the string in an input element.…
krasnit
  • 1
  • 1
0
votes
1 answer

Error when reading inbox using O365 from python

I coded a simple python script to get the inbox of an user in my company's tenant. The licence in this specific user is an Office F3. Here is my code: import O365 from O365 import Account, Connection, MSGraphProtocol, Message scopes=['basic',…
0
votes
1 answer

The Outlook Inbox Filter doesn't work....why not?

Instead of showing ReceivedTime only for Inbox items for the last two days, this shows for all Inbox items, why? $objOutlook = new-object -comobject Outlook.Application $namespace = $objOutlook.GetNameSpace("MAPI") $InboxFolder =…
Boomer67
  • 65
  • 4
0
votes
0 answers

Reading messages from Gmail which has an attachment - Node.js

I've been struggling with reading messages from Gmail API. I can get the body of every mail using mail.Payload.Parts[0].Body.Data, which contains the message body in base64. The thing is that when the mail I'm retrieving has an attachment, parts[0]…
RGU
  • 1
  • 2
0
votes
2 answers

How to open another tab using React

I have written a simple piece of code to open another tab using React. It currently does not work. I think that something very simple has gone wrong but I am unsure where. Message.component.jsx import React from 'react'; import ReactDOM from…
0
votes
1 answer

How to access inbox of facebook from app in iPhone?

I want to access inbox of my facebook from iPhone application. I have implemented Graph API. How to do that?
dks1725
  • 1,631
  • 1
  • 20
  • 29
0
votes
1 answer

Dell Boomi - How do you move an email from Inbox to an Inbox Sub-folder?

I have a Dell Boomi Integration process that runs, and after it finishes It's supposed to move from the Inbox to a another folder called Voucher Processed. However the process recognizes the Inbox but says that Voucher Processed does not…
NinjaRuki
  • 27
  • 10
0
votes
1 answer

How to filter the Google Api inbox to read only the main messages?

I made a script to check if there are new emails in my inbox, but it returns the emails (Gmail) from the Main, Social and Promotions box, but I just want to read the one from the Main box. Its an script for my IA # Call the Gmail API to…
0
votes
2 answers

Python: Using another mailbox in sending emails

I have three mailboxes on my Outlook. How can I use my other mailbox in sending email via Python? The below script currently uses my main inbox = jgliban@ims.com. How can I use my other mailbox (jgliban@iqvia.com) in sending the email on the…
Janine
  • 37
  • 8
0
votes
2 answers

Show a list when a choice is made

I'm trying to work around a script Under Windows.Form and I'm a little bit stuck. I'd like to be able a specific list appears depending on the choice made from the first list, which means that at the start of the script, only one list has to appears…
Nad
  • 35
  • 6
0
votes
2 answers

how to send transactional emails straight to inbox?

I've been trying to send transactional emails to Gmail, Hotmail and Yahoo inboxes but most of the time they are going to spam folder. I already tried using SPF, DKIM filter, multi-part message and still couldn't get the "magic solution" that always…