Advertisement
RandomClear

How to send arbitraty e-mail - method #3

Feb 11th, 2013
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.85 KB | None | 0 0
  1. // See also: http://pastebin.com/BBuTp8Kq - "how to send arbitraty e-mail - method #1"
  2. // See also: http://pastebin.com/Y9W9UK19 - "how to send arbitraty e-mail - method #2"
  3. // See also: http://pastebin.com/M5D57Naa - "how to send arbitraty e-mail - method #4"
  4. // See also: http://pastebin.com/MfLi4pbj - "how to send arbitrary e-mail with file attaches"
  5. // See also: http://pastebin.com/3Q1ykdSH - "how to send feedback instead of bug report"
  6. // See also: http://pastebin.com/jxKB2WDZ - "how to send arbitrary data to bug tracker"
  7.  
  8. // This code will work in any project - even without EurekaLog active
  9.  
  10. // This method relies on installed local e-mail client application.
  11.  
  12. uses
  13.   ETypes, ESendMail, ESendMailSMAPI;
  14.  
  15. procedure TForm1.Button1Click(Sender: TObject);
  16. begin
  17.   EurekaLogSendEmail(esmSimpleMAPI, '', 'to-email@example.com', 'Subject', 'Body');
  18. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement