79 Discussion / Question Topics

Remove Filter
Member Avatar for
Member Avatar for Shalini_7

Hi, did anyone know how to send email using vb.net without username and password of user, for example it can detect current user crediantials of email(outlook). Most of the google example is using username and password. Please help

Member Avatar for stephenlangton
0
893
Member Avatar for akkbkht

Hi, I am using one my collegue email in microsoft outlook. She recieved an email two days ago. But when I am searching my outlook. I can't find that email. Please note that all other latest emails are properly recieveing in my inbox but that specific email is missing. Thanks …

Member Avatar for akkbkht
0
278
Member Avatar for Takuniku

A user open her mails in Outlook and it will lag then take a few minutes to open up. This happen intermittenly and I told her is due to the many applications she's running at the same time and she also need to reduce her Inbox size (left 200MB free …

Member Avatar for CimmerianX
0
217
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 TylerTCF

I was wondering if anyone could help me out with a problem I've had for a few days. This is a code snippet of a program I'm writing to move and delete email attachments from one or more selected emails. Everything works great except the program won't edit the body …

Member Avatar for Stuugie
0
545
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 philpense

Have what I believe is a PST folder of downloaded email from an Optimum Online account. - Within Outlook how can one confirm that this is PST file/folder - What is the proper way to get these emails to a DVD, then check if the transferred data is correct

Member Avatar for gerbil
0
248
Member Avatar for VasquezPL

Hi Guys, I have a big problem. I want to merge two oft/msg outlook templates. when I try to open my oft/msg outlook template with: Outlook.Application oApp = new Outlook.Application(); Outlook.MailItem newMail = (Outlook.MailItem)oApp.CreateItemFromTemplate(path); newMail.Display(); It works - pictures are visible.. The problem is that I need to merge two …

Member Avatar for cgeier
0
756
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

Hello, I have my own mail template in vb6.0. when i click on send button it creates a new outlook 2007 window. all information passes to it except subject message. on my local machine it is working but on client side not. Tanks, krunal

0
185
Member Avatar for TraderX

Hello all, I am by no means a coder, so hopefully someone has something they would be willing to share that would meet this need. I would like to have a Outlook rule, where: - When an email comes in from a specific account - Has an attachment (PDF, doc, …

0
179
Member Avatar for DGULLIVER

Hi Everyone, I need my application to loop through all unread items and action depending who send the email. This I can do with no issues. The problem I'm having is when I mark the message as read the Items Count decreased in real time. Here is my full code: …

Member Avatar for PerplexedB
0
2K
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 heycooldude

I have my outlook mailboxes in this structure mailbox1 -Inbox Mailbox2 -Inbox Current script is able to access Inbox of mailbox1 as it is my main mail box where as mailbox2 has been added into my profile. I want to be able to access Inbox of Mailbox2 import win32com.client import …

0
180
Member Avatar for heycooldude

Hi, I want to send back reply to the same email but with different email account. Here is my script mail = outlook.Session.GetItemFromID(ID) subject = mail.Subject if mail: message_reply = mail.Reply() message_reply.From='_from_email' #not working message_reply.Body = "THE FOLLOWING TASK HAS BEEN MARKED AS COMPLETED: \n\n" message_reply.CC= '_CC_Email' message_reply.Send() I tried …

0
155
Member Avatar for cussel

hi all :) i've problem with spam email in ubuntu 1204 LTS use ispconfig3,... each spam email detected by server (ispconfig3) it's not send to client (outlook), its stopped in sever,.. how to allow/by pass all email contain spam to client??? what must i set??? please help me :(

Member Avatar for cussel
0
322
Member Avatar for ScubaSam

Hey everyone I'm looking for someone to help me, I want to view my outlook reminders using JavaScript. Any help would be appreciated.

Member Avatar for pritaeas
0
129
Member Avatar for elouch

Hi everyone, need some help with outlook. i need to extract information from outlook messages from default folder(inbox) to subfolders(including subfolders of subfolders) but it seems that i'm having problem on calling the folder from the outlook's default pst file. below are the codes i've already tried. outlookfolder = outlookmapi.Folders(folder_name) …

Member Avatar for elouch
0
501
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 caltech

I found a script on ExtendOffice.com that does this perfectly, except the BCC email address isn't displayed in the field. The value is there, but invisible (as it does indeed work). I want to alter the following code so that the auto-BCC email will be visible in the field when …

Member Avatar for cgeier
0
868
Member Avatar for jack.mcalister.71
Member Avatar for Asmith_1
0
343
Member Avatar for mcfilmmakers

Hello, I am currently running Windows 8 and am having an issue with Internet Explorer. Even with no programs running, IE constantly opens and tries accessing Outlook.com and hits an error screen from Outlook.com saying the requested page cannot be found. While downloading the virus scanners for the logs, I …

Member Avatar for mcfilmmakers
0
410
Member Avatar for HBovenkamp

Good day, I have a vb.net application that reads my default inbox. Now I need to expand it to read the inboxes of other accounts to which I have access. Can anyone please point me into the right direction? Thanks, Hans

Member Avatar for lolafuertes
0
161
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 subrata_ushasi

Hi , I am trying to send news letter through outlook express with html from my website as follows : I have a news letter icon in my website ,When I click , it will open outlook express with html (news letter) and just fill up the email id and …

Member Avatar for mattster
0
223
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 Floppy1

Hi, I need help with coding so I can see the WORK week. In this code I only see the whole week. "glob_calendar_id:=oOutlook; //Store object ID oOutlookCOM:=oOutlook.GetComObject; oOutlookCOM.Folder:='Calendar'; //Calendar view oOutlookCOM.View:='Week'; I need to see WORK week. Help please...

0
151
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
649

The End.