Registriert seit: 7. Jun 2006
Ort: Karlsruhe
3.724 Beiträge
FreePascal / Lazarus
|
AW: mailto: mit Variable im Body
22. Apr 2011, 22:54
Hallo Michael,
Willkommen in der DP
Du kannst den String einfach typecasten:
Delphi-Quellcode:
ShellExecute(0,'open',PChar('mailto:'+EMail+'?subject=I found a bug&body=Version: '+Version+'%0D%0AThat´s what happened:'),
NIL, NIL, SW_SHOWNORMAL);
Oder etwas eleganter:
Delphi-Quellcode:
ShellExecute(0,'open',PChar(Format('mailto:%s?subject=I found a bug&body=Version: %s%%0D%%0AThat´s what happened:', [EMail, Version])),
NIL, NIL, SW_SHOWNORMAL);
Geändert von Namenloser (23. Apr 2011 um 01:16 Uhr)
Grund: Siehe Satty67s Post
|
|
Zitat
|