Category "email"

Add attachment by url to Outlook mail

The context There is a button on the homepage of each document set in a document library on a SharePoint Online environment. When the button is clicked, an Out

Auto email response after enquiry form not working, 'emailid' argument undefined?

I need to add auto response email on my forms. This requires us to add an argument to the [cd-iframe] directive specifying which email needs to be sent. This al

How to save email from outlook using python

I am trying to save email from sub-folder using the below python script, I am trying to restrict with days=1 means I only need to save emails which are 1 day ol

Get Sender's Email Address in Outlook Macro Without Using MailItem

The MailItem.SenderEmailAddress and MailItem.To fields are coming through as null unless I run Outlook at admin. How can I get the sender's email address and t

Reading emails with MAPI in PHP?

As you know Microsoft Exchange Server uses a proprietary protocol called MAPI. Is that possible to read emails from the Ms exchange with that protocol in PHP. I

How to programmatically (C#) create and add a default (HTML) signature in Outlook 2013?

Sorry for bothering you - but maybe somebody can help me here!? We are creating an Outlook 2013 VSTO Add-In to manage Corporate Signatures centrally and publis

Track Email Category change in public shared folder only if I make the change

I have code to track changes in the Category of emails in a Public (Shared) Folder. I have set up the code to be able to switch it "on/off", and this code is in

Logging into Outlook using powershell with no user logged on

I was wondering if its possible to create a powershell script to log into a specific outlook mail box and than add the script to the scheduled task so that no u

Opening encrypted emails with c#

I'm working in Visual Studio 2012 to build a relatively simple add-in for Outlook 2010. Machines are Win 7 Enterprise 32 and 64. The purpose of the add-in is

outlook vba code to display pictures in email

By default, my MS Outlook 2013 is set NOT to download images in received HTML e-mail messages. I would like to keep this setting. There are some senders whose

Error "Maximum DNS-interactive terms limit (10) exceeded"

My problem began a few days ago as I tried setting up an email campaign for my users, it kept going into spam! After posting my email on email-tester.com, I rea

Extract text string from undeliverable email body to Excel

I am trying to extract the email address from each individual undeliverables email body. The email body would be like: ----------------------------Email-------

Best way to send email to clients from e-commerce website?

I'm building e-commerce website that will sell all kind of items, what is the best way to send emails to clients? Our selling department will send a lot of em

Get sent message in Outlook Addin

I am facing some problems trying to get the sent message from an Outlook plugin. In onItemSend event, I open a dialog where it shows some fields, with message

"Unable to connect to the remote server" Error

I'm trying to send an email from my website. this is my code: public string SendEmail() { string sMessage; SmtpClient smtpClient = new SmtpClient(

Standard character set for Outlook 2010 .msg file

I need to find out, what type of character set it is, if I save an email from outlook 2010 in non-unicode format. At saving you can choose between .msg file and

Send Email Intent

Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/html"); intent.putExtra(Intent.EXTRA_EMAIL, "emailaddress@emailaddress.com"); intent.putExt

Slack API: Retrieve all member emails from a slack channel

Given the name of a slack channel, is there a way to retrieve a list of emails of all the members in that channel? I tried looking in the slack api docs but cou

Email sent through CakeEmail showing attachments icon in outlook even when no attachments is sent

I have using CakeEmail to send email but when I send Html and text email then the email show the attachment icon in the outlook . I found that it is because o

Processing a .msg file in java [closed]

I am planning on parsing an outlook .msg file in Java - the message body will be a number of tables which I need to process - as such I was wo