Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7563429
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:39:50+00:00 2026-05-30T13:39:50+00:00

Is there a cross-platform way of launching an email client from FireMonkey so that

  • 0

Is there a cross-platform way of launching an email client from FireMonkey so that it will work on both Windows and OS/X. Under windows I can do the following:

ShellExecute(0, 'OPEN', 'mailto:somebody@somewhere.com', '', '', SW_ShowDefault);

Is there a cross-platform equivalent to launch an email client (preferably with attachments, recipient, subject, body etc.)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T13:39:51+00:00Added an answer on May 30, 2026 at 1:39 pm

    As far i know there is not a cross-platform way to send a mail, but using the ShellExecute function in the windows side and the NSWorkspace.openURL for the OSX you can write your own implementation.

    Try this OSX implementation.

    uses
      Macapi.Foundation,
      Macapi.AppKit,
      System.SysUtils;
    
    Procedure SendMail(const Mailto,Subject, Body:string);
    var
      URL : NSURL;
      AWorkspace : NSWorkspace;
      encodedSubject,
      encodedTo,
      encodedBody    : NSString;
    begin
      //NSString *encodedSubject = [NSString stringWithFormat:@"SUBJECT=%@", [subject stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
      encodedSubject :=NSSTR(Format('SUBJECT=',[Subject])).stringByAddingPercentEscapesUsingEncoding(NSUTF8StringEncoding);
      //NSString *encodedBody = [NSString stringWithFormat:@"BODY=%@", [body stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
      encodedBody    :=NSSTR(Format('BODY=',[Body])).stringByAddingPercentEscapesUsingEncoding(NSUTF8StringEncoding);
      //NSString *encodedTo = [to stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
      encodedTo      :=NSSTR(Mailto).stringByAddingPercentEscapesUsingEncoding(NSUTF8StringEncoding);
      //NSString *encodedURLString = [NSString stringWithFormat:@"mailto:%@?%@&%@", encodedTo, encodedSubject, encodedBody];
      //NSURL *mailtoURL = [NSURL URLWithString:encodedURLString];
      // [[NSWorkspace sharedWorkspace] openURL:mailtoURL];
      URL := TNSURL.Create;
      URL.initWithString(NSSTR(Format('mailto:%s?%s&%s',[ encodedTo.UTF8String, encodedSubject.UTF8String, encodedBody.UTF8String])));
      AWorkspace := TNSWorkspace.Create;
      AWorkspace.openURL(URL);
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any cross-platform way to check that my Python script is executed with
Is there a cross-platform way (in C/C++) to make from a unsigned char an
From PHP, is there a cross-platform, cross-web server way of determining if PATH_INFO is
Is there a (cross-platform) way to get a C FILE* handle from a C++
Is there a cross platform way to selectively export certain functions and structs from
I was wondering if there's a cross platform way to mimic the Windows Open
There are so many cross platform libraries that I am kinda lost to get
Is there anyway to create a desktop icon (cross platform/browser) from a linked image
I am writing a program that is cross platform. There are a few spots
Is there an cross-platform way to determine the maximum file size of the host

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.