Bootstrap

Qt 中使用默认邮箱的简单方式

#include <QDesktopServices>
#include <QUrl>


....

QDesktopServices::openUrl(QUrl(QLatin1String("mailto:[email protected]")));

....

;