Search found 18 matches: bdone

Return to advanced search

Re: smtpserver

... = { || oDlg:SetMsg( "Connecting to mail.lpsi.qc.ca" ) } oOutMail:bConnected = { || oDlg:SetMsg( "Connected" ) } oOutMail:bDone = { || oDlg:SetMsg( "Message sent successfully" ) } oOutMail:SendMail( "wilsonrw@sympatico.ca",; // From { "rwilson@mail.lpsi.qc.ca" ...
by richard wilson
Wed Oct 05, 2016 6:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: smtpserver
Replies: 5
Views: 1365

smtpserver

... = { || oDlg:SetMsg( "Connecting to mail.lpsi.qc.ca" ) } oOutMail:bConnected = { || oDlg:SetMsg( "Connected" ) } oOutMail:bDone = { || oDlg:SetMsg( "Message sent successfully" ) } oOutMail:SendMail( "rwilson@lpsi.qc.ca",; // From { "wilsonrw@sympatico.ca" ...
by richard wilson
Wed Sep 28, 2016 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: smtpserver
Replies: 5
Views: 1365

TestSmtp.prg

... viene con Feivewin. Dado que mi intención es enviar varios mails uno detrás de otro, he necesitado modificarlo de la siguiente manera: oOutMail:bDone = { || oWnd:SetMsg( "Message sent successfully" ) } por: oOutMail:bDone = { || (oWnd:SetMsg( "Message sent successfully" ), ...
by FiveWiDi
Sun Dec 15, 2013 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TestSmtp.prg
Replies: 0
Views: 290

Re: How to send email from app ?

... = { || oWnd:SetMsg( "Connecting to smtp ..." ) } oMail:bConnected = { || oWnd:SetMsg( "Connected" ) } * oMail:bDone = { || oWnd:SetMsg( "Mail Done" ) } * oMail:SendMail("jclip@skynet.be" ,; // From aaqui,; // To wdetail ,; // Msg Text wsubject,; ...
by Jack
Sun Mar 06, 2011 11:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from app ?
Replies: 3
Views: 1895

... ) ) oOutMail:bConnecting := { || oWndMdi:SetMsg( "Connecting to "+cHOST ) } oOutMail:bConnected := { || oWndMdi:SetMsg( "Connected" ) } oOutMail:bDone := { || oWndMdi:SetMsg( "Message sent successfully" ) } oOutMail:bFailure := { || oOutMail:nStatus := 7 } oOutMail:SendMail( cFROM,; // From { ...
by Rick Lipkin
Mon Dec 08, 2008 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tsmtp ( again )
Replies: 3
Views: 1415

Tsmtp ( again )

... ) ) oOutMail:bConnecting := { || oWndMdi:SetMsg( "Connecting to "+cHOST ) } oOutMail:bConnected := { || oWndMdi:SetMsg( "Connected" ) } oOutMail:bDone := { || oWndMdi:SetMsg( "Message sent successfully" ) } oOutMail:bFailure := { || oOutMail:nStatus := 7 } oOutMail:SendMail( cFROM,; // From { ...
by Rick Lipkin
Mon Dec 08, 2008 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tsmtp ( again )
Replies: 3
Views: 1415

Yury,

thanks for your input, but it still doesnt work here :-(
When no authentification is required, there are no problems and the blocks bConnected and bDone are evaluated. But with authentification, they both aren't evaluated, but also bFailure doesn't "show up"...
by gkuhnert
Sun Oct 12, 2008 5:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tsmtp-class
Replies: 6
Views: 1656

Rick,

Just after:

oOutMail:bDone = { || oWndMdi:SetMsg( "Message sent successfully" ) }
by Antonio Linares
Fri Oct 03, 2008 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trapping SMTP e-mail error
Replies: 43
Views: 7637

Genetating an array of cc addresses to Pass thru Tsmtp

... ) ) oOutMail:bConnecting = { || oWndMdi:SetMsg( "Connecting to "+cHOST ) } oOutMail:bConnected = { || oWndMdi:SetMsg( "Connected" ) } oOutMail:bDone = { || oWndMdi:SetMsg( "Message sent successfully" ) } oOutMail:SendMail( cFROM,; // From { cTO },; // To cMESSAGE,; // Msg Text cSUBJECT,; {"C:\DBTMP\PROJINFO.BAT"},; ...
by Rick Lipkin
Sun Aug 17, 2008 11:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Genetating an array of cc addresses to Pass thru Tsmtp
Replies: 2
Views: 708

Tsntp ( attachments )

... ) ) oOutMail:bConnecting = { || oWndMdi:SetMsg( "Connecting to "+cHOST ) } oOutMail:bConnected = { || oWndMdi:SetMsg( "Connected" ) } oOutMail:bDone = { || oWndMdi:SetMsg( "Message sent successfully" ) } oOutMail:SendMail( cFROM,; // From { cTO },; //, cPMOEMAIL, cSPOEMAIL },; // To cMESSAGE,; ...
by Rick Lipkin
Thu Jul 31, 2008 7:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tsntp ( attachments )
Replies: 14
Views: 3086

TestSmtp

... MsgInfo( cIP ) * oOutMail:bConnecting = { || MsgInfo( "Connecting to "+cHOST ) } * oOutMail:bConnected = { || MsgInfo( "Connected" ) } * oOutMail:bDone = { || MsgInfo( "Message sent successfully" ) } oOutMail:SendMail( cFROM,; // From { cTO },; // To cMESSAGE,; // message cSUBJECT, ) // subject ...
by Rick Lipkin
Tue Jul 08, 2008 7:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TestSmtp
Replies: 6
Views: 1609

testsmtp

... cIP ) oOutMail:bConnecting = { || oWnd:SetMsg( "Connecting to hot.pl..." ) } oOutMail:bConnected = { || oWnd:SetMsg( "Connected" ) } oOutMail:bDone = { || oWnd:SetMsg( "Message sent successfully" ) } oOutMail:SendMail( "inkom@hot.pl",; // From { "inkom.kj@wp.pl" },; // To "It is working!!!",; ...
by kajot
Sun May 18, 2008 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: testsmtp
Replies: 0
Views: 518

TESTSMTP - Enviar imagem???

... = { || oWnd:SetMsg( "Connecting to smtp.fivetechsoft.com..." ) } oOutMail:bConnected = { || oWnd:SetMsg( "Connected" ) } oOutMail:bDone = { || oWnd:SetMsg( "Message sent successfully" ) } oOutMail:SendMail( "alinares@fivetechsoft.com",; // From { "alinares@fivetechsoft.com" },; ...
by MGA
Thu Mar 27, 2008 2:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TESTSMTP - Enviar imagem???
Replies: 0
Views: 512

Problems with sending emails - some questions

... oOutMail:bConnecting = {|| cStat1:= "Connecting",Em2Dlg:Update() } oOutMail:bConnected = {|| cStat2:= "Connected",Em2Dlg:Update() } oOutMail:bDone = {|| EmSend := .T.} oOutMail:SendMail(ALLTRIM(US->UOUTLADR),; {ALLTRIM(LOWER(cEmail))},FmText,; ALLTRIM(EmOnde),TabAttach) ---------------------------------------------- ...
by driessen
Sun Feb 18, 2007 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with sending emails - some questions
Replies: 15
Views: 6976

My sendmail is work well.

... + ") and waiting for response..." ) } oMail:bConnected := {|| oDlg:SetMsg( "Connected and sending mail and attachments..." ) } if lMsgInfo oMail:bDone := {|| MsgInfo('Mail sent complete') } else oMail:bDone := {|| nCount++ } end oMail:SendMail( ; cSender, ; // from/de { cTo }, ; // to/para (arreglo) ...
by dutch
Wed Jul 19, 2006 7:14 am
 
Forum: FiveWin for CA-Clipper
Topic: Send Email
Replies: 8
Views: 4587
Next

Return to advanced search