Advertisement
RandomClear

How to send arbitraty e-mail - method #4

Feb 11th, 2013
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.86 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/BR5iyxkW - "how to send arbitraty e-mail - method #3"
  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 works like clicking "mailto" hyper-link in browser.
  11.  
  12. uses
  13.   ETypes, ESendMail, ESendMailShell;
  14.  
  15. procedure TForm1.Button1Click(Sender: TObject);
  16. begin
  17.   EurekaLogSendEmail(esmShellClient, '', 'to-email@example.com', 'Subject', 'Body');
  18. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement