Hi experts,
How to get emails in outlook inbox instead of imap.gmail.com inbox?
kindly reply with any solution,
thank u,
regards,
Seenu...
Printable View
Hi experts,
How to get emails in outlook inbox instead of imap.gmail.com inbox?
kindly reply with any solution,
thank u,
regards,
Seenu...
just add a mail account in outlook and configure with the imap settings, they are readily available from gmail
pete, thanks for ur reply, right now i had an account in outlook and receive mails, but i m just asking abt receiving mails in imap.gmail.com inbox, not in outlook default inbox, thats what i m asking.
set up some rule for this i think, though it could be done using vba, if you wanted to
ok thank u.
This is what I use...
vb Code:
Function Mail_PDF_Outlook(FileNamePDF As String, StrTo As String, _ StrSubject As String, StrBody As String, Send As Boolean) Dim OutApp As Object Dim OutMail As Object Set OutApp = CreateObject("Outlook.Application") Set OutMail = OutApp.CreateItem(0) On Error Resume Next With OutMail .To = StrTo .CC = "" .BCC = "" .Subject = StrSubject .Body = StrBody '.Body = ActiveDocument.Content .Attachments.Add FileNamePDF If Send = True Then .Send ' A security prompt will appear Else ' save to draft folder '.display .Save '.Close olPromtForSave '.Close End If End With On Error GoTo 0 Set OutMail = Nothing Set OutApp = Nothing End Function
I choose the .save option to put the email in the draft folder. Otherwise, I'd be prompted to send each email.
Adrian
adrian, thanks for the reply, actuly i m asking abt incoming mails, move to specific folder.