Outlook Redemption multiple accounts - outlook

I have multiple email accounts in my outlook that I can read and send emails from. I can view these accounts from Redemption fine (and all their content), but what I also want is to be able to send emails from those accounts, not just the default. By default, Redemption sends emails from the default account. Can you please give me an example of how to send emails from different accounts that are loaded in Outlook (preferably in C#)?

What are the secondary accounts? In case of Exchange delegate accounts, set the RDOMail.SentOnBehalfOfName property, other (POP3/SMTP), set the RDOMail.Account property.

Related

Changing Account with "on-send" feature?

I have a customer with multiple users, they have two emails accounts on two differents domains.
One is managed by Office365 : Teams / Calendar, example : #my-business.com
Second is for "secure" communication, exemple : #my-secure-email.com
The second one is really not used very often but the emails sent or received must absolutely not go on Office365 (legal reason)
I want to force user to send emails to *.#my-secure-email.com with second account.
With "on-send Feature" i think i can "block" emails but ideally it should be possible to dynamically change the account used in Outlook according to the recipient's address ?
EDIT to clarify :
Is it possible to change sender account with office-js and "on sender" feature on office365 ?
Is it possible to change sender account direclty in Outlook for Windows based on recipient address ?
Thanks
Guldil
Is it possible to change sender account with office-js and "on sender" feature on office365 ?
No, it is not possible. OfficeJS doesn't provide anything for that.
Is it possible to change sender account direclty in Outlook for Windows based on recipient address ?
Yes, you can choose the sender's account in Outlook manually or by using a VSTO add-in instead. The MailItem.SendUsingAccount property is available in the Outlook object model (available for VBA macros and COM based add-ins). The property allows setting an Account object that represents the account under which the MailItem is to be sent.
But web add-ins work under the context of currently selected item only (or in case of UI-less add-ins what they activated for) and don't provide access to application-wide features like choosing email account to send from.
You can post or vote for an existing feature request on Tech Community where they are considered when the Office dev team go through the planning process. Use the github label: Type: product feature request at https://aka.ms/M365dev-suggestions .

Outlook preselect sender

We use Office365 and Exchange Online (as part of out Office365 plan). We have two users and a shared mailbox. Both users have full access to the shared mailbox and added it to Outlook. So they can read inomcing messages and select the E-Mail address of the shared mailbox as sender.
Is it possible to set the E-Mail Address of the shared mailbox as preselected sender on writing a new E-Mail or on answering?
that's possible if you are running Outlook (not OWA) and a third-party add-in (or your own VBA script) that populates the From: field.

Using VBScript to read inbox from Outlook Web Access

I have an email account, which is accessed via OWA.
I would like to set-up a small VBScript app to periodically check the inbox for new unread messages.
I can already access the OWA account manually but would like to automate this.
You can always use the MAPI function and call (outlook.application) to check the inbox. and read all the inbox messages or even download attachments, mark mail items unread. Create an exe. and call it at startup or schedule a server job.

How To Create an Exchange 2010 Email That Just Distributes Its Received Emails to Other Users?

How do you accomplish setting up an Exchange email that is made just to have users send email to it, then have that email automatically distribute received emails to specified email addresses?
I figured this out. I need to create a distribution group within the Exchange 2010 ECP (Exchange Control Panel) by going to remote.mydomain.com/ecp and creating a distribution group with the desired associated users.

microsoft outlook how to send an email from an email group which I belong to?

I belong to a email group in the company I work for, such as for example, researchteam#company.com. My personal email is raulmercado#company.com. I want to send emails from researchteam#company.com instead of raulmercado#company.com. I'm using Microsoft Outlook and Exchange as a Email Server.
Thanks for your help!
If you using Outlook 2010 then you could try MailItem.SendUsingAccount property.
Here is an example
Exchange always sends out all emails coming from the default email address. And for each Exchange mailbox this default address is fixed and can not be changed in Outlook. You can use one of two options:
You can create an additional mailbox in Exchange for the second address (as the default email there of course) and then give your normal account "Send-As" rights for that new account. Then you can switch on the "FROM" field in Outlook (right-click options > Show Fields > From) and use that field to select the account you want to send from. In Outlook 2013 you can also just connect to the additional Exchange account and might get slighly easier switching.
You can use a 3rd party tool like ChangeSender (http://www.servolutions.com/changesender.htm) to get automatic switching of the accounts when you answer email (answered automatically with the account the email was received under).
Hope this helps - Claus

Resources