IdMessage1.Recipients.EMailAddresses := edtPara.Text; //email destinatario
IdMessage1.Subject := EdtAssunto.Text;//assunto
IdMessage1.Body := mmoMsg.Lines; // Mensagem que será enviada
IdMessage1.From.Address := edtUsuario.Text; // Email do Remetente
IdMessage1.From.Name := edtOrigem.Text; // Nome do Remetente, que aparecerá quando chegar.
IdSMTP1.Connect;
try
IdSMTP1.Send(IdMessage1);
finally
IdSMTP1.Disconnect;
Application.ProcessMessages;
end;
Application.MessageBox('Email Enviado!', 'Confirmãção', MB_ICONINFORMATION + MB_OK);
o erro que retorna é :
Project SisBackup.exe raised exception class EIdOSSLCouldNotLoadSSLLibrary with message 'Could not load SSL library.'.Process stoped. Use Step or Run to continue.
Question
robinhocne
Pessoal estou com um erro aqui ao tentar enviar:
o erro que retorna é :
O que pode ser ?
Edited by robinhocneLink to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.