0
votes
2answers
15 views

run a VBA scipt if write a new e-mail

I wrote an VBA: Sub ToChange() Dim olApp As Outlook.Application Dim objNachrich As MailItem Set olApp = New Outlook.Application Set objNachrich = olApp.CreateItem(0) Set Mail = objNachrich ...
0
votes
1answer
32 views

Send E-Mail Using VBA To E-Mail Lists On Excel

ve 90% of my VBA code written, just need to add the following. My macro pretty much runs and If Statement and if a certain condition applies, it will email it to a certain address. What I need it to ...
0
votes
1answer
31 views

Qt sending emails using company's or school email (outlook)

I am new to the Qt framework and I am trying to build my first application using this framework. The version I am using is Qt SDK 1.2.1 on Windows 7 (using c++). I am trying to have my application ...
-1
votes
1answer
15 views

Creating custom mailbox in outlook without using the mail protocols [closed]

I want to create a custom mailbox that is consisted of the mail default folders like inbox, send, etc without using the mail protocols like IMAP or POP. I also want this mailbox to work with my ...
-5
votes
1answer
47 views

Creating an MSG file in ASP.NET C# [closed]

Any idea how to create an MSG file in ASP.NET C#? I tried looking for examples on Google but I'm not having a good luck with that. Thank you. Update Edit: Here's what I was able to do after looking ...
-1
votes
1answer
16 views

Monitoring a mailbox and sending autoreplies using Java [closed]

I am working on Incident Management System where user creates tickets and track them. Sending mail to a Public folder is one of the ways to create tickets. I am users to be replied as and when they ...
0
votes
0answers
22 views

How to add link to microsoft new outlook mail client in android?

I want add link send link via android app , gmail and other client support for html but microsoft outlook of android does not support html content, and it showing blank in mail body instead on link ...
0
votes
2answers
88 views

Send responsive email with media queries in Outlook

We have a newsletter that uses media queries to display it in a responsive format for smaller screens. It displays as it should in Outlook, but when the email is forwarded on, it appears that Outlook ...
0
votes
0answers
26 views

Valign not working in Outlook HTML Emails

So I've been wrangling all week with a newsletter redesign for my company, tweaking the html to make it display semi-consistently across email clients. I've made good use of www.litmus.com for much of ...
0
votes
4answers
79 views

why php mail function not work in xampp

I have problem i use xampp . i want check mail form but i can't see any result . i config Mercury/32 like this tutorial in this site : ...
-2
votes
0answers
29 views

Can't send mail with outlook on Linux server [closed]

I've been using a Windows web server for years with no major issues. Recently, we set up a Linux server to move all our domains and can't finish the process because we've been unable to send email ...
0
votes
2answers
47 views

Outlook 2010 Email Emulator/Preview tool

I'm having some problems with an HTML based email in Outlook 2010 (says my client). I don't have a copy of outlook 2010 myself to test with and I don't want to keep sending test's to my client. Does ...
0
votes
1answer
65 views

Saving OFT templates with MS Outlook

I have problem with saved MS Outlook template *.oft I have simple HTML page with images (http://ukazky.kelocnet.cz/newsletter/), opened in Internet Explorer 9. With the function „Send - page by ...
-1
votes
0answers
23 views

Disable hover pop up for <a> tag in outlook 2010

Is any way that I can disable the hover pop up for the HTML tag in outlook HTML email?
1
vote
1answer
94 views

c# new mail from outlook with attachment

This has been asked before in one way or another, but i need some clarity on an issue I am having. essentially, my client wants his app (wpf, written in VS2010) to be able to create new messages in ...
0
votes
0answers
43 views

Outlook Email Template VBA - with Input/Data Return

I am having some trouble with Outlook. Our current System: In our current system, we have this setup in Excel where the user selects the State and City, and then it returns the items they want ...
0
votes
1answer
34 views

Redemption Cannot Resolve User error

When I am trying to send a mail, I get a box to fill in my exchange server, username and password. It work's fine. But when I try to send a mail I get an error. (JIT) The error code: ...
-1
votes
0answers
25 views

Managing client communications - How to track and respond to emails using a unique reference number [closed]

I am looking for a solution to the following scenario. It sounds like a easy task for, say, a CRM application, but I only want this particular piece of functionality. Short version: I want to be ...
0
votes
1answer
47 views

c# winforms create email from outlook template file

I am creating a mail using winforms like so: private void CreateOutlookEmail(string addresses) { try { Outlook.Application outlookApp = new ...
-1
votes
1answer
30 views

Is it possible to send out an outlook delayed email without keeping the application running? [closed]

I am using outlook 2012 and was wondering if the above is possible. So even though my computer is off, the email should still send.
0
votes
0answers
122 views

how to access my yahoo or gmail account in outlook (c#)?

I have 3 data files: Outlook data file (is empty) Gmail data file (from my gmail pop3) Yahoo data file (from my yahoo imap) I can access the Outlook data file inbox (which is always empty, I don't ...
0
votes
0answers
38 views

Show confirmation pop up after sending an mail from outlook

I have an requirement that says, I need to send mail through user's default mail program (say outlook) when the user has finished entering the email id and user clicks "send", a popup should show up ...
2
votes
1answer
131 views

Outlook web client html email images and ImageProxy.mvc

I'm having a problem with images in html emails in Outlook web client. When a you put a image like this: <img src="http://www.nortpalet.com/newsletter/green_btn.png"</a> Outlook change ...
1
vote
1answer
60 views

Importing email files in Outlook programmatically

I have a directory full of email files I want to import into Outlook. These files should be, AFAIK, in RFC822 format. Opening them with Notepad++ shows the following and more plaintext Return-Path: ...
-1
votes
1answer
187 views

Table's border-right doesn't show in email template when viewed in Outlook

I have gone through a lot of threads, but I couldn't find something helpful. If that's a duplicate please point me to the relevant thread. We have created a custom RSS feed for one of our websites in ...
0
votes
1answer
128 views

Attachments don't show up in Outlook when sending via python

We're trying to send emails with attachments but for some reason the attachments don't show up for people using outlook. If they forward the email to someone using gmail it shows up fine in gmail. If ...
1
vote
1answer
37 views

Link in PHP mail does not send the right link

I am sending a mail with php and I have included a link using this code: $message = "--{$mime_boundary}\n" . "Content-Type: text/html; charset=\"iso-8859-1\"\n"."Content-Transfer-Encoding: 7bit\n\n" ...
0
votes
1answer
174 views

Difference between a .msg file and a .eml file

What are the difference between a .msg file and a .eml file? I know that eml is infact a text file while msg is not. Both can be opened in Outlook. Outlook allows you to save the email as .msg ...
1
vote
3answers
112 views

How to download email messages as .msg files

Programatically using Java, is it possible to download and save emails from Exchange Server as .msg files? If not, are there any formats possible, which can be opened with Outlook
0
votes
0answers
29 views

Save email as text before sending

I use a VBA macro to send quotations to our customers. It gets the information from a HTML generated from excel and also attached a copy of this text file and works fine. However, sometimes our sales ...
0
votes
0answers
18 views

Send email merge from a secondary inbox address

Can I choose the email address that I send merged emails from in MS Office? I monitor several Outlook inboxes with unique email addresses. These inboxes are shared with others. When I complete an ...
0
votes
1answer
80 views

Send email without using SMTP

I would like to send an email without using an SMTP server. I have tried using CDO.Message to send email. It works fine in IIS5.0 but not with IIS6.0. Is there a way to save emails to a pickup ...
1
vote
0answers
30 views

Outlook HTTP mail protocol?

MS Outlook supports HTTP as one of the e-mail access protocols. As a provider, it supports Hotmail, MSN and "Other". Question - where can I find the description of the protocol so that I may implement ...
-3
votes
1answer
57 views

Email treated as SPAM when has Links [closed]

I've work all day long on that crazy problem. I created an HTML email that will be sent massively. I Use PHPMailer and I tried Mail Function. Both PHPMailer, it's SMTP feature and the native Mail ...
0
votes
0answers
18 views

Adjusting Outlook forwarding options with shortcut

I recently set up a free SMS Service account for Outlook 2010 intending to use it to forward my email to my mobile. However, as it supports only 10 free messages per day, I only want the email ...
0
votes
0answers
132 views

Application-Defined or Object-Defined Error Using Access

I'm trying to send automated emails through outlook from Access, but I've run into an issue where if a user does not have their email open already, I will get the Application-Defined or Object-Defined ...
0
votes
3answers
163 views

Import .msg format email information (including Subject, Sender, CC, Receiver, SentDate, etc) to excel cells

I am a newbie of VBA. I would be appreciate if anyone could kindly provide a Excel or Outlook VBA script for My task. The task in relatively simple. I have more than 4000 .msg format files (outlook ...
0
votes
0answers
66 views

Add signature to Outlook mail VS2012

I'm making a signature button that on click should add my signature on the bottom of the page. I'm using Visual Studio 2012 and i've made the button, but since i don't understand this programming ...
0
votes
0answers
58 views

How to pop up a box by applescript when mouse move on the “send” button of Outlook 2011 for Mac?

I am a Noob. I want the users to receive a pop-up notification when they are ready to send the email on Outlook 2011 for Mac. Can the applescript or anything else do this thing that a message box will ...
0
votes
1answer
35 views

How to format a string for Outlook

I'm trying to format a string for a new email in outlook but when I use "\n" it doesn't make a return. Is there a way to fix this? I'm using cocoa to build this app. And I need to have the returns. ...
4
votes
1answer
2k views

HTML email in outlook table width issue

My HTML email template is displaying correctly without major problems in Gmail, Apple Mail and iOS Mail. Outlook however is a horrifying mess and I can't for the life of me figure out what I've done ...
0
votes
1answer
39 views

Outlook x-headers for automatically flagging/categorising email

I'm creating a website for a client that has a form which will sent emails to a centralised inbox. They have stressed the importance that website emails are quickly dealt with as they could be new ...
0
votes
1answer
237 views

VBA - Outlook: Send message from one of multiple mailboxes

Here is my problem: - my client has multiple accounts in Outlook 2010 - each account has multiple mailboxes Example: - Account A: email@address.com - under neath of that account he has the following ...
1
vote
1answer
163 views

VBA Outlook - Get email addresses from attached .msg files

I would like to have some code that helps me to get the email address of the sender of an attached .msg file. I have an email with around 10 emails attached. I need to copy the sender address from ...
0
votes
0answers
190 views

Reading Outlook .msg file

I am trying to write code using Apache POI package to read Outlook .msg mail files I am trying to get messageIds for all .msg files in a directory. However for some .msg files these messageId is ...
0
votes
1answer
46 views

Microsoft Exchange Server host address from computer name

I'm trying to connect to Microsoft Exchange Server using javax.mail.Store. In order to do so I need an Microsoft Exchange host. When I check options in my outlook I see computer name rather than a ...
0
votes
0answers
164 views

html email getting cut off in outlook [closed]

I have created an html email that works fine in all email clients except outlook. Some of the text gets cut off on the right hand side of the page. The email is also not aligning properly. any ...
0
votes
0answers
68 views

Excel spreadsheet into python, then into email and automatically send

I have an excel macro currently and want to change it into python. I have an excel macro with multiple cells of information for each person. IE: A B C Steve What Info mark the tank ...
-2
votes
1answer
27 views

Alias to receive email [closed]

My email is 1@xyz.com. Can I create an alias to it called 2@xyz.com so that any emails sent to 2@xyz.com are forwarded to 1@xyz.com. xyz.com is a corporate account. I know I can create alias to send ...
1
vote
3answers
228 views

Ugh Outlook HTML email

So, typical question. I have searched a boatload here. Tried everything suggested. Nutin' So Maybe to ask the question fresh. I am having some verical gaps in Outlook 2013 (and 2007 too i think) ...

1 2 3 4 5 10