Actually it does seem to work just fine, but you have to set the text format for the message box. So you may have to do it yourself:
msgBox.setWindowTitle("Help / About");
msgBox.setTextFormat(Qt::RichText); //this is what makes the links clickable
msgBox.setText("<a href='mailto:someone@somewhere.com?Subject=My%20Subject>Email me</a>");
msgBox.exec();
QMessageBox msgBox(this);
msgBox.setWindowTitle("Help / About");
msgBox.setTextFormat(Qt::RichText); //this is what makes the links clickable
msgBox.setText("<a href='mailto:someone@somewhere.com?Subject=My%20Subject>Email me</a>");
msgBox.exec();
To copy to clipboard, switch view to plain text mode
Bookmarks