Programming/C# - Window

C#/ 연락 이메일 보내기 이벤트

esoog Polaris 2023. 10. 12. 12:03
반응형
private void lblContact_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
    try
    {
        btnSubmit.Text = "Login";
        System.Diagnostics.Process.Start("mailto:asdf@gmail.com?subject=" + AssemblyTitle + " Activation code Request" +
                                "&body=Dear asdf, \n I have brought " + AssemblyTitle + " . Please send me activation code." +
                                " \n Here is my purchase details: \n" +
                                " Envato Username: \n" +
                                " Purchase Date:  \n" +  
                                " Invoice No: \n" +
                                " Order No:  \n" +
                                " or Leave a message on message section \n" +
                                " https://asdf.com");
    }
    catch
    {

    }
}
728x90

'Programming > C# - Window' 카테고리의 다른 글

C#/ MSSQL에 DB(.sql) 설치 프로그래밍  (0) 2023.10.13
C#/ Crypto 암호화  (0) 2023.10.13
C#/ [STAThread]  (0) 2023.10.12
C#/ Export to CSV파일로 추출하기  (0) 2023.10.12
C#/ 어셈블리(Assembly) 사용  (0) 2023.10.12