Search found 50 matches: cfrom

Return to advanced search

Re: MAPI Outlook HTML TEXT

I cannot test it but maybe oMailItem:to := cRecipient oMailItem:from := cFrom you should try Thank you. But I have tried and get an errormessage. Error description: (DOS Error -2147352570) WINOLE/1008  No exported variable: FROM   Args:     [   ...
by Horizon
Wed Feb 28, 2024 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI Outlook HTML TEXT
Replies: 10
Views: 441

Re: MAPI Outlook HTML TEXT

I cannot test it but maybe

oMailItem:to := cRecipient
oMailItem:from := cFrom

you should try
by MarcoBoschi
Wed Feb 28, 2024 1:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI Outlook HTML TEXT
Replies: 10
Views: 441

Enviar Correos CDO con fwh2307

... 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 = cMsg For x := 1 To Len( aAttach ) if aAttach[x] <> NIL :AddAttachment(AllTrim(aAttach[x])) ...
by EASYSOFT
Mon Aug 21, 2023 5:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar Correos CDO con fwh2307
Replies: 15
Views: 781

Re: New Fivewin with new PDF

... Local cServer := "smtp.gmail.com" Local cUserName := "Shipping@mycompany.com" Local cPassWord := "mypassword" Local cFrom := "Shipping@mycompany.com" Local cSubject := DtoC( Date() ) + "-" + Time() + ", SPF Test for EMail" Local cToAddr ...
by byron.hopp
Tue Apr 05, 2022 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New Fivewin with new PDF
Replies: 12
Views: 926

Re: Send EMail Within FW Appplication....

... this forum.. ****************************************************************************************************** STATIC FUNCTION SENDMAIL( cFrom, cServer, cTo, cSubject, cMessage, aAttach, cSender, cUser, cPassword, aCc, lHtml, cPort, lNotification, lSSL ) LOCAL lOk := .F. LOCAL oCfg, oMsg ...
by RiazKhan
Tue Jun 08, 2021 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send EMail Within FW Appplication (RESOLVED)
Replies: 18
Views: 3039

Re: Send EMail Within FW Appplication....

... these as in my Gmail account.... Allow Less Secure Apps - is ON 2-step verification - DISABLED I am passing all parameters to sendmail() SENDMAIL( cFrom, cServer, cTo, cSubject, cMessage, aAttach, cSender, cUser, cPassword, aCc, lHtml, cPort,lNotification , lSSL ) This is the return message : "Unsent ...
by RiazKhan
Tue Jun 08, 2021 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send EMail Within FW Appplication (RESOLVED)
Replies: 18
Views: 3039

Re: envio de emails

El Provedor, és gmail.com? Saludos. Karinha, buenos días: cFrom := PadR( 'xxxxxxxxx@alojamientovirtual.com', 180 ), cTo := PadR( 'xxxxxxx@gmail.com', 180 ) El email va desde una cuenta de "alojamientovirtual.com" a una de "gmail" ...
by karinha
Fri Feb 12, 2021 12:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: envio de emails
Replies: 8
Views: 644

Re: envio de emails

karinha wrote:El Provedor, és gmail.com?

Saludos.



Karinha, buenos días:

cFrom := PadR( 'xxxxxxxxx@alojamientovirtual.com', 180 ),
cTo := PadR( 'xxxxxxx@gmail.com', 180 )

El email va desde una cuenta de "alojamientovirtual.com" a una de "gmail"
by Loren
Fri Feb 12, 2021 7:29 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: envio de emails
Replies: 8
Views: 644

Re: A tool to send email ?

... ( infos from internet ): // smtp.de.aol.com for emails ending with aol.com // login for the SMTP-Server is needed. // username and password LOCAL cFrom := "Uwe" LOCAL cServer := "smtp.de.aol.com" LOCAL cTo := "esckoenig@aol.com" // my email for testing the mailbox ...
by ukoenig
Mon Jun 13, 2016 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A tool to send email ?
Replies: 25
Views: 9458

Re: email CDO caracter problem

... cAttach) endif Return lRet ******************************************************************************** Static Function Envia_Mail(oCfg,cFrom, cTo, cCC, cBCC, cMsg, cSubject, cAttach) local cToken local lRet := .f. local Vezes := 0 Do While Vezes <= 5 cTo := Destinatarios( cTo ) //--> ...
by Wanderson
Wed May 25, 2016 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: email CDO caracter problem
Replies: 13
Views: 1900

código para ftp

... 25 METHOD NoOp() 26 METHOD Rest( nPos ) 27 METHOD Pwd() 28 METHOD Cwd( cPath ) 29 METHOD Dele( cPath ) 30 METHOD LS( cSpec ) 31 METHOD Rename( cFrom, cTo ) 32 METHOD MKD( cPath ) 33 METHOD RMD( cPath ) 34 METHOD Retr( cFile ) 35 METHOD Stor( cFile ) 36 METHOD List( cSpec ) 37 METHOD UserCommand( ...
by solving
Mon Jul 27, 2015 9:48 am
 
Forum: FiveTouch
Topic: código para ftp
Replies: 1
Views: 1490

Re: DIREFENCIA ENTRE HARBOUR/XHARBOUR

... Indirect execution support: --------------------------- Other than codeblocks, xHarbour provides the inderect execution function HB_ExecFromArray() that has the following syntax: HB_ExecFromArray( cFuncName, [aParams] ) --> result HB_ExecFromArray( @nFuncId(), [aParams] ) --> ...
by Antonio Linares
Sun Jul 12, 2015 9:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIREFENCIA ENTRE HARBOUR/XHARBOUR
Replies: 4
Views: 2192

CDO email

... cBCC ) //--> COM COPIA OCULTA TRY oMsg := CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject :TextBody = cMsg For x := 1 To Len( cAttach ) if cAttach[x] <> NIL :AddAttachment(cAttach[x]) ...
by Wanderson
Tue Jun 02, 2015 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CDO email
Replies: 2
Views: 545

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 ...
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

... instalar en las pc's donde no funciona o que deberia configurar. LAS FUNCIONES SON ESTAS // --- Envio de correo electronico Function SendEmail(cFrom,cTo,cBCC,cAttach,cSubject,cBody,cUser,cPass) Local oDlg, aCtl[ 22 ], oFont Local cMailServer := PadR( "smtp.gmail.com", 60 ) // servidor ...
by noe aburto
Tue May 12, 2015 2:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: usando CDOSYS marca error, mail
Replies: 4
Views: 1117
Next

Return to advanced search