Envio emails
Envio emails
Hola foro.
Tengo que hacer una pequeña aplicacion para enviar emails diferidos.
Me gustaria poder hacerlo de forma que el operador no lo vea en pantalla mientras trabaja en otra cosa.
Alguien puede darme una idea o un ejemplo si lo tiene ya hecho.
Muchas gracias
Tengo que hacer una pequeña aplicacion para enviar emails diferidos.
Me gustaria poder hacerlo de forma que el operador no lo vea en pantalla mientras trabaja en otra cosa.
Alguien puede darme una idea o un ejemplo si lo tiene ya hecho.
Muchas gracias
José Martin Uriarte
jmuarg@yahoo.es
jmuarg@yahoo.es
Re: Envio emails
jmua,jmua wrote:Hola foro.
Tengo que hacer una pequeña aplicacion para enviar emails diferidos.
Me gustaria poder hacerlo de forma que el operador no lo vea en pantalla mientras trabaja en otra cosa.
Alguien puede darme una idea o un ejemplo si lo tiene ya hecho.
Muchas gracias
si usas xHarbour ultimas versión, podrías usar:
HB_SendMail()
espero te sirva
William, Morales
Saludos
méxico.sureste
Saludos
méxico.sureste
William.
Tengo el xHarbour que me vino con fwh10 y en la documentacion no encuentro hb_sendmail(), y claro si no conocco la funcion malamanete podre hacer nada.
Ademas es la primera vez que voy ha hacer esto
Me lo explicas un poco, tienes un ejemplo
Gracias
Tengo el xHarbour que me vino con fwh10 y en la documentacion no encuentro hb_sendmail(), y claro si no conocco la funcion malamanete podre hacer nada.
Ademas es la primera vez que voy ha hacer esto
Me lo explicas un poco, tienes un ejemplo
Gracias
José Martin Uriarte
jmuarg@yahoo.es
jmuarg@yahoo.es
Hola José,
lo tienes también en el CVS de Harbour, en Contrib/Tip.
Pero por si no lo tienes, lo puedes descargar de http://www.megaupload.com/es/?d=CD1770KE
Saludos,
Félix
lo tienes también en el CVS de Harbour, en Contrib/Tip.
Pero por si no lo tienes, lo puedes descargar de http://www.megaupload.com/es/?d=CD1770KE
Saludos,
Félix
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
HB_SendMail( cServer, nPort, cFrom, aTo, aCC, aBCC, cBody, cSubject, aFiles, cUser, cPass, cPopServer,nPriority, lRead, lTrace, lPopAuth)
Where:
cServer -> Required. IP or domain name of the mail server
nPort -> Optional. Port used my email server
cFrom -> Required. Email address of the sender
aTo -> Required. Character string or array of email addresses to send the email to
aCC -> Optional. Character string or array of email adresses for CC (Carbon Copy)
aBCC -> Optional. Character string or array of email adresses for BCC (Blind Carbon Copy)
cBody -> Optional. The body message of the email as text, or the filename of the HTML message to send.
cSubject -> Optional. Subject of the sending email
aFiles -> Optional. Array of attachments to the email to send
cUser -> Required. User name for the POP3 server
cPass -> Required. Password for cUser
cPopServer -> Requered. IP or domain name of the pop3 mail server
nPriority -> Optional. Email priority: 1=High, 3=Normal (Standard), 5=Low
lRead -> Optional. If set to .T., a confirmation request is send. Standard setting is .F.
lTrace -> Optional. If set to .T., a log file is created (sendmail<nNr>.log). Standard setting is .F.
lPopAuth -> Optional. Flag to indicate that pop3 autentication is used. Standard setting is .T.
Where:
cServer -> Required. IP or domain name of the mail server
nPort -> Optional. Port used my email server
cFrom -> Required. Email address of the sender
aTo -> Required. Character string or array of email addresses to send the email to
aCC -> Optional. Character string or array of email adresses for CC (Carbon Copy)
aBCC -> Optional. Character string or array of email adresses for BCC (Blind Carbon Copy)
cBody -> Optional. The body message of the email as text, or the filename of the HTML message to send.
cSubject -> Optional. Subject of the sending email
aFiles -> Optional. Array of attachments to the email to send
cUser -> Required. User name for the POP3 server
cPass -> Required. Password for cUser
cPopServer -> Requered. IP or domain name of the pop3 mail server
nPriority -> Optional. Email priority: 1=High, 3=Normal (Standard), 5=Low
lRead -> Optional. If set to .T., a confirmation request is send. Standard setting is .F.
lTrace -> Optional. If set to .T., a log file is created (sendmail<nNr>.log). Standard setting is .F.
lPopAuth -> Optional. Flag to indicate that pop3 autentication is used. Standard setting is .T.
Y bajo Harbour, no existe esta posibilidad?Antonio Linares wrote:HB_SendMail( cServer, nPort, cFrom, aTo, aCC, aBCC, cBody, cSubject, aFiles, cUser, cPass, cPopServer,nPriority, lRead, lTrace, lPopAuth)
Where:
cServer -> Required. IP or domain name of the mail server
nPort -> Optional. Port used my email server
cFrom -> Required. Email address of the sender
aTo -> Required. Character string or array of email addresses to send the email to
aCC -> Optional. Character string or array of email adresses for CC (Carbon Copy)
aBCC -> Optional. Character string or array of email adresses for BCC (Blind Carbon Copy)
cBody -> Optional. The body message of the email as text, or the filename of the HTML message to send.
cSubject -> Optional. Subject of the sending email
aFiles -> Optional. Array of attachments to the email to send
cUser -> Required. User name for the POP3 server
cPass -> Required. Password for cUser
cPopServer -> Requered. IP or domain name of the pop3 mail server
nPriority -> Optional. Email priority: 1=High, 3=Normal (Standard), 5=Low
lRead -> Optional. If set to .T., a confirmation request is send. Standard setting is .F.
lTrace -> Optional. If set to .T., a log file is created (sendmail<nNr>.log). Standard setting is .F.
lPopAuth -> Optional. Flag to indicate that pop3 autentication is used. Standard setting is .T.
Saludos
Carlos G.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Antonio no me dijiste que HB_Sendmail() ya estava incluido en Xharbour, o entendi mal.
Me dice:
Error: Unresolved external '_HB_FUN_SENDMAIL' referenced from D:\EMAILS\MYOBJ\PRINCIPAL.OBJ
Gracias
Me dice:
Error: Unresolved external '_HB_FUN_SENDMAIL' referenced from D:\EMAILS\MYOBJ\PRINCIPAL.OBJ
Gracias
José Martin Uriarte
jmuarg@yahoo.es
jmuarg@yahoo.es
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Antonio quizas sea muy torpe pero añado la libreria tip.lib y me sigue cascando el mismo error.
Estoy utilizando verce y la añado en lib/obj de terceros, no veo otro sitio.
No tendras un ejemplo por hay
Gracias
Estoy utilizando verce y la añado en lib/obj de terceros, no veo otro sitio.
No tendras un ejemplo por hay
Gracias
José Martin Uriarte
jmuarg@yahoo.es
jmuarg@yahoo.es
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Antonio.
He usado HB_Sendmail() y SendMail() y no me va de ninguna manera
Gracias
He usado HB_Sendmail() y SendMail() y no me va de ninguna manera
Gracias
José Martin Uriarte
jmuarg@yahoo.es
jmuarg@yahoo.es