19 Solved Topics

Remove Filter
Member Avatar for
Member Avatar for Papa_Don

Hi group, I'm trying to insert both a copied range (from and Excel file) AND a message (text) into the body of an Outlook email. I've perfected the code to insert the range, but I've not figured out how to get the message to go along with it. I hope …

Member Avatar for Papa_Don
0
5K
Member Avatar for paul1145

Public Function setEmailSend(ByVal sSubject As String, ByVal sBody As String, _ ByVal sTo As String) As Boolean Dim oApp As Outlook._Application Dim oMsg As Outlook._MailItem setEmailSend = False oApp = New Outlook.Application oMsg = CType(oApp.CreateItem(Outlook.OlItemType.olMailItem), Outlook._MailItem) oMsg.BodyFormat = Outlook.OlBodyFormat.olFormatRichText oMsg.Subject = sSubject oMsg.To = sTo 'here I need the current …

Member Avatar for paul1145
0
557
Member Avatar for krunal1986

Hi, I have migrated OS from XP to win8.1. Earlier in my VB application, I was sending email thourgh my outlook object. set outapp = createObject("Outlook.application") but now I am getting error "ActiveX Compponent Can't create Object." as i have migrated my OS. is there any other change in code? …

Member Avatar for krunal1986
0
335
Member Avatar for PerplexedB

I have this routine that works in outlook 2010 but not in outlook 2013 (365). ` Public Sub readTextFile(oFolder As eFolder) If oFolder = NotSupported Then Exit Sub If oFolder = Inbox Then ActiveExplorer.CurrentView = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox).Views("MgInbox") Else ActiveExplorer.CurrentView = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderSentMail).Views("MgSentMail") End If Dim oTV As Outlook.TableView Set oTV = ActiveExplorer.CurrentView …

Member Avatar for PerplexedB
0
381
Member Avatar for krunal1986
Member Avatar for troverman

Just changed out internet provider, including our 5 static IPs. Reconfigured sonic wall, and basically everything works (Internet, email, etc) but not Outlook Web Access / outlook anywhere. In fact, typing the usual mail.domain.com/exchange simply brings up search results now, rather than trying to connect. Our name servers are still …

Member Avatar for troverman
0
525
Member Avatar for Reverend Jim

I've been having a problem for (I'm guessing) a few months that I finally resolved and I'm posting it here as a warning. The problem occurs in Outlook 2003 but may also occur in later versions. **Symptoms** I'd start composing an email in Outlook 2003 and save it to the …

Member Avatar for Reverend Jim
0
304
Member Avatar for ss125

I have recently configured my online outlook account with my gmail id. All my configuration were done. But after configuration outlook is downloading all my previous mails. I want to stop the unnecesary download of old mails. I want to configure it such that it should only download/sync today's mail …

Member Avatar for ss125
0
264
Member Avatar for cmabill

I have tried many options outlook provided, but it still doesn't work. the error box heep prompting up asking me to verify the pop server, my account, and password, after I confirm it, it come up again. when I cancel it, then the dialing prcoess ended with error sugestion.---that the …

Member Avatar for cmabill
0
223
Member Avatar for krunal1986

hi all, i am sending mail through exchange server version Exchange2010. below is my code: static void Main() { try { string owausername = string.Empty; string owapassword = string.Empty; string mailFrom; string mailTo; string mailSub; string mailBody; ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack; ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010); EmailMessage email = new EmailMessage(service); …

Member Avatar for krunal1986
0
650
Member Avatar for james.schlup.33

I am having some wierd issues on one of the email accounts for a customer I manage. Recently his exchange account when accessed in outlook 2003 will start deleting all email messages in the inbox. I had to create another folder and have all message routed to that on to …

Member Avatar for james.schlup.33
0
266
Member Avatar for tarwara

Hi, Actually I am not familiar with Exchange server environment so i have a qn. Can we convert ost file into pst using outlook inbuilt import/export option while disconnecting to Exchange Server. I mean If I am not connected to Exchange so i will be not able to read ost …

Member Avatar for luciferjemmie
0
419
Member Avatar for VasquezPL

I have a small problem, maybe you guys know how to avoid it. system.IO.StreamReader text = new System.IO.StreamReader(to the html path); while ((line = text.ReadLine()) != null) { newMail.HTMLBody += line } When I open html file directly from its folder where html file is,byclicking 2 times on it, All …

Member Avatar for VasquezPL
0
231
Member Avatar for MysticalNomad

I have the following code that is very simple and gets information from form fields and mails it off. The issue is that when the email is received using Microsoft Outlook 2003 the message is blank and the actual message that is supposed to be there is an attached HTML …

Member Avatar for MysticalNomad
0
182
Member Avatar for ingrammusic

Does anybody know how to tell if email from outside my network made it to my exchange 2003 server? I have a user that can't receive email from anyone on the outside unless it's a reply message from one the user sent. Thanks

Member Avatar for ingrammusic
0
158
Member Avatar for thehap

I've noticed some inconsistencies in the way different Outlook version handle the file creation and modification timestamps for saved attachments. Whenever my coworker (running Outlook 2007 SP2 on Windows XP) saves an attachment, it is timestamped using the moment that the attachment was saved to the file system. However, whenever …

Member Avatar for thehap
0
260
Member Avatar for euroazn

Suppose I have an Outlook account that is logged in at the computer. How can I send an email from this account to a given contact (if this can be a group, that would be really nice) via a C# program? Thank you very much!

Member Avatar for euroazn
0
181
Member Avatar for PierlucSS

Is there an option in Outlook 2003 or a free add-on I can add to enable the popup(toasts) when an email enter in a subfolder of inbox (because a rule I created) Thanks for your help!

Member Avatar for PierlucSS
0
197
Member Avatar for MGIndia

hi !!! I am making a window application in which I want tree view in left panel .For each nodes (the nodes here are outlook messages stored in a vault,) click I want the corresponding outlook message to be displayed in right panel . The outlook message in the right …

Member Avatar for kvprajapati
0
165

The End.