Search found 298 matches: mapi

Return to advanced search

Re: Sending HTML using MAIL

Thank you ....but I don't think that addresses the issue. Using the tMail class, I am sending the address, subject, and text to a MAPI client ( ie. Outlook ). That client has the signature built in. When using MAPI, the client displays the the email form, but it is in standard text, not ...
by TimStone
Wed Apr 05, 2023 5:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending HTML using MAIL
Replies: 10
Views: 703

Sending HTML using MAIL

The following code works fine with MAPI       DEFINE MAIL oMail ;         SUBJECT cSubj ;         TEXT cText ;         FILES cSndFile, cSndFile ;  ...
by TimStone
Tue Apr 04, 2023 11:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending HTML using MAIL
Replies: 10
Views: 703

Re: Windows 11 Home Single Language

... that package. ( ie. ADS, Oracle, etc ). They did nothing to resolve it or even provide information. Another one is their phasing out now of MAPI services, and thus programs wishing to interact with Outlook Desktop are struggling with newer versions. Their client base is simply not the focus ...
by TimStone
Thu Mar 16, 2023 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 11 Home Single Language
Replies: 8
Views: 917

MAPI Outlook "sync" with DBF / SQL

hi, when use Codejock Calendar i can use MAPI or DBF / SQL as "Dataprovider" when use DBF / SQL i can use MAPI in 2nd Thread to "sync" Outlook.PST when Outlook is "open" i can "see" when it "sync" ...
by Jimmy
Mon Jan 23, 2023 7:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI Outlook "sync" with DBF / SQL
Replies: 0
Views: 218

Inviare posta con TMAIL

... parametro. Non mi interessa Outlook per cui è sufficiente mettere 1 , 2 , 3 come secondo elemento nell'array aRecipents Mi riferisco solamente a MAPI , classe TMail Nel senso che per quanto mi riguarda deve funzionare con Thunderbird e David Infocenter (simpe mapi) #include "Fivewin.ch"#include ...
by MarcoBoschi
Fri Oct 14, 2022 8:50 am
 
Forum: All products support
Topic: Inviare posta con TMAIL
Replies: 9
Views: 1137

Re: MAPI Clients - Thinking ahead

Hi, Thunderbird supports MAPI but its implementation is buggy. MAPI is a Microsoft protocol, so other systems may not reference it. In my case, to solve this, what I did was use Thunderbird generating the .eml and sending it with an automatic ...
by hmpaquito
Mon May 09, 2022 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI Clients - Thinking ahead
Replies: 1
Views: 306

MAPI Clients - Thinking ahead

... thinkng, and I take it from so many years of personal experience. However, Microsoft seems to like removing well liked products. Outlook provides MAPI services and I find this to be the best way for users of my program to communicate with their clients, and to retain copies of all communications, ...
by TimStone
Mon May 09, 2022 1:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI Clients - Thinking ahead
Replies: 1
Views: 306

Envio de emails

Hola, Un cliente con thunderbird como gestor de email, tiene problemas con el envio de emails. Leo en el sitio de TB que no funciona 100% con MAPI. He probado con CDOSYS y tambien tengo problemas. Tambien he visto que windows 10 mail tampoco es compatible con MAPI. Se me acaban las ideas de como ...
by hmpaquito
Thu Mar 03, 2022 8:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Envio de emails
Replies: 5
Views: 499

Re: Mapi Outlook .. send mail silently

This

Code: Select all  Expand view
oMailItem:Invoke("Send")


can be replaced with this other

Code: Select all  Expand view
oMailItem:Send()


It's exactly the same. Anyway, it works very well, thank you!

EMG
by Enrico Maria Giordano
Fri Dec 20, 2019 10:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2530

Re: Mapi Outlook .. send mail silently

To All As it turns out the code actually works .. I learned that Outlook where I work is blocked .. I tested that with my Outlook client on my laptop .. and when I sent an e-mail with the full version of Outlook .. the message behaved the same way and got stuck in the outbox .. This is perfect .. Th...
by Rick Lipkin
Fri Dec 20, 2019 8:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2530

Re: Mapi Outlook .. send mail silently

Your code works well except .. the e-mail goes to the Outlook Outbox and it is never sent .. oMailItem:display(.F.)oMailItem:Invoke("Send")  even it you do not o:display(.F.) it will never "send" ... it goes to Out-Basket. the only Way to "send" it...
by Jimmy
Fri Dec 20, 2019 8:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2530

Re: Mapi Outlook .. send mail silently

Phillippe Your code works well except .. the e-mail goes to the Outlook Outbox and it is never sent .. http://img4.imagetitan.com/img4/small/20/20_silentemail.jpg Definitly on the right track ... any suggestions ? Rick Lipkin #Include "FiveWin.ch"//-------------------------...
by Rick Lipkin
Fri Dec 20, 2019 7:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2530

Re: Mapi Outlook .. send mail silently

Hi , I think i have the solution , if you place the instruction oMailItem:Invoke("Send") , it is in silent mode . Good luk and marry Christmas . Philippe #include "fivewin.ch" function main() local oOutLook,oMailItem oOutLook := TOleAuto():New("Outlook.Application") oMa...
by Jack
Fri Dec 20, 2019 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2530

Re: Mapi Outlook .. send mail silently

... "Send Mail Form" which is called with Outlook Method Display() --- what is in your HB_ISLOG( 7 ) when call MAIL :?: c:\fwh\source\winapi\mapi.c HB_FUNC( MAPISENDMAIL )   ...      lpfnMAPISendMail = ( LPMAPISENDMAIL ) GetProcAddress( hMapiLib, "MAPISendMail");// ...
by Jimmy
Sat Dec 14, 2019 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2530

Re: Mapi Outlook .. send mail silently

In my program, the emails are not "mass", just daily followups. They are sent automatically in the middle of the night. It works to use SMTP, but then we don't have them in Outlook. Also most of my clients have no idea how to setup SMTP, so that is an issue. Apparently the API for Outlook ...
by TimStone
Fri Dec 13, 2019 6:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2530
PreviousNext

Return to advanced search