19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Codice: gambas [Seleziona]Public Sub MAIL(destinatario As String, oggetto As String, corpo As String, allegato As String) Dim comandomail As String Dim hmail As Process ''****PER thunderbird comandomail = "thunderbird -compose to='" comandomail &= destinatario comandomail &= "',subject='" comandomail &= oggetto comandomail &= "',body='" comandomail &= corpo If allegato = "no" Then comandomail &= "'" Else comandomail &= "',attachment='" comandomail &= allegato & "'" Endif hmail = Shell (comandomail) EndCiao, alla prox
Public Sub MAIL(destinatario As String, oggetto As String, corpo As String, allegato As String) Dim comandomail As String Dim hmail As Process ''****PER thunderbird comandomail = "thunderbird -compose to='" comandomail &= destinatario comandomail &= "',subject='" comandomail &= oggetto comandomail &= "',body='" comandomail &= corpo If allegato = "no" Then comandomail &= "'" Else comandomail &= "',attachment='" comandomail &= allegato & "'" Endif hmail = Shell (comandomail) End
thunderbird -compose to='pippobaudo_at_gmail.com',subject='tuooggetto',body='testo del corpo'
grazie golia sono sempre più in debito con te
devo inviare 2 email da gambas.ho fatto una ricerca nel forum ed ho trovato solo una risposta di leo che utilizzava mutt e msmtp.ci sono stati nuovi sviluppi?