Search found 43 matches: omsg

Return to advanced search

Acuse d e entrega y acuse de lectura en un mail.

... Yo estoy usando CDOSYS y consigo reproducir el acuse de lectura, pero no hay manera de reproducir el acuse de entrega. En mi código utilizo: oMsg:Fields:Item( "urn:schemas:mailheader:disposition-notification-to" ):Value = cFrom oMsg:Fields:Item( "urn:schemas:mailheader:return-receipt-to" ...
by FiveWiDi
Sat Apr 06, 2024 7:34 pm
 
Forum: Off Topic / Otros temas
Topic: Acuse d e entrega y acuse de lectura en un mail.
Replies: 2
Views: 1532

Enviar Correos CDO con fwh2307

Estimados buenas tardes. Al actualizarme a la versión fwh2307 ya no se puede enviar los correos utilizando CDO TRY oMsg := CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject :TextBody ...
by EASYSOFT
Mon Aug 21, 2023 5:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar Correos CDO con fwh2307
Replies: 15
Views: 855

Re: MENU MAS ATRACTIVO

Joäo, se puede agregar la calculadora a la barra de tareas? intento con: DEFINE MSGITEM oMsg OF oWnd:oMsgBar ; SIZE 24 ; BITMAPS "CALCULADORA" ; TOOLTIP "Calculadora de Windows" ACTION WinExec("CALC.EXE") y me da error.. lo mismo si le ...
by TOTOVIOTTI
Tue Aug 15, 2023 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MENU MAS ATRACTIVO
Replies: 26
Views: 3135

Re: Send EMail Within FW Appplication....

... cFrom, cServer, cTo, cSubject, cMessage, aAttach, cSender, cUser, cPassword, aCc, lHtml, cPort, lNotification, lSSL ) LOCAL lOk := .F. LOCAL oCfg, oMsg LOCAL cCc := "" LOCAL i DEFAULT lHtml := "<html" $ LOWER( cMessage ) DEFAULT lNotification := .F. DEFAULT lSSL := .F. TRY ...
by RiazKhan
Tue Jun 08, 2021 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send EMail Within FW Appplication (RESOLVED)
Replies: 18
Views: 3070

Re: How to implement a scrolling message?

The test @ 120,500 SCROLLMSG oMsg TEXT cText SIZE 300, 150 PIXEL OF oDlg2 ; FONT oFont COLOR CLR_HRED, CLR_YELLOW SPEED 2 oMsg:lBox := .F. ----------------- Add in scrolmsg.prg DATA lBox INIT .t. METHOD New( nRow, nCol, nWidth, nHeight, ...
by ukoenig
Wed Apr 24, 2019 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement a scrolling message?
Replies: 21
Views: 4744

Re: Meter or Progress on Msgbar

define msgitem oMsg of oWnd:oMsgbar size 110

@ 04,oWnd:oMsgbar:nWidth-111 progress oMeter position 0 oWnd:omsgbar size 94,18 pixel
by MGA
Mon Apr 15, 2019 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Meter or Progress on Msgbar - Resolved!!
Replies: 5
Views: 815

Funciona hoy el CreateObject( "CDO.Message" ) ??

... ejemplo que encontre, pero no funciona con Harbour 3.2 , alguna idea o ayuda :?: :cry: ? #include "FiveWin.ch" function Main() local oMsg := CreateObject( "CDO.Message" ) local oConf := CreateObject( "CDO.Configuration" ) local cSchema := "http://schemas.microsoft.com/cdo/configuration/" ...
by jcaro
Wed Nov 30, 2016 8:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciona hoy el CreateObject( "CDO.Message" ) ??
Replies: 7
Views: 1550

Re: email CDO caracter problem

... := Destinatarios( cTo ) //--> PARA cCC := Destinatarios( cCC ) //--> COM COPIA cBCC := Destinatarios( cBCC ) //--> COM COPIA OCULTA TRY oMsg := CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject ...
by Wanderson
Wed May 25, 2016 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: email CDO caracter problem
Replies: 13
Views: 1933

Re: WARNING! Memory allocated but not released: 192 bytes (4 blo

Master, cual és un otro comando para reemplazar - equivalente a WITH OBJECT oMsg ?

Gracias, saludos.
by karinha
Thu Feb 04, 2016 12:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: WARNING! Memory allocated but not released: 192 bytes (4 blo
Replies: 14
Views: 3658

CDO email

... := Destinatarios( cTo ) //--> PARA cCC := Destinatarios( cCC ) //--> COM COPIA cBCC := Destinatarios( cBCC ) //--> COM COPIA OCULTA TRY oMsg := CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject ...
by Wanderson
Tue Jun 02, 2015 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CDO email
Replies: 2
Views: 549

Re: no me funciona CDOSYS, gmail

funcion: Function fSendMail( cMailServer, cFrom, cTo, cSubject, cBody, cAttach, cBCC, cUser, cPass, nPort, oDlg ) Local oCfg, oMsg, oError, nEle, cToken, bMens, lAuth:=!Empty(cUser).and.!Empty(cPass) Local aAttach:={} Default nPort := 25, ; cSubject := "", ; cBody := "" ...
by noe aburto
Fri May 29, 2015 1:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: no me funciona CDOSYS, gmail
Replies: 5
Views: 669

usando CDOSYS marca error, mail

... ) Return Nil // --- Enviar un mail Function fSendMail( cMailServer, cFrom, cTo, cSubject, cBody, cAttach, cBCC, cUser, cPass, nPort ) Local oCfg, oMsg, oError, nEle, cToken, bMens,; lAuth := ! Empty( cUser ) .and. ! Empty( cPass ), ; nSendOpt := 2 // send using: 1 = pickup folder 2 = port memvar ...
by noe aburto
Tue May 12, 2015 2:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: usando CDOSYS marca error, mail
Replies: 4
Views: 1118

Re: Clase TSMTP y Gmail

... "+oP:Nombreusuario+; "...........Muchas Gracias , Sistema Recolecta" correoencargado() RETURN function correoencargado() local oMsg := CreateObject( "CDO.Message" ) local oConf := CreateObject( "CDO.Configuration" ) local cSchema := "http://schemas.microsoft.com/cdo/configuration/" ...
by guapilescity
Tue Feb 11, 2014 4:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TSMTP y Gmail
Replies: 2
Views: 686

Re: app crash FWH 13.04

... function Main() STATIC isOn := .F. STATIC oDlgWt, nWidth, oFont14 Local oMsg, nHeight, nMsgWidth, nDlgWidth DEFAULT cCaption := "Please wait..." DEFINE FONT oFont14 NAME "Arial" SIZE 6,-12 ITALIC cCaption ...
by cnavarro
Mon Jul 08, 2013 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: app crash FWH 13.04
Replies: 1
Views: 886

app crash FWH 13.04

... function Main() STATIC isOn := .F. STATIC oDlgWt, nWidth, oFont14 Local oMsg, nHeight, nMsgWidth, nDlgWidth DEFAULT cCaption := "Please wait..." DEFINE FONT oFont14 NAME "Arial" SIZE 6,-12 ITALIC cCaption ...
by toyet
Mon Jul 08, 2013 8:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: app crash FWH 13.04
Replies: 1
Views: 886
Next

Return to advanced search