I am creating an Email Sending Software. So far i am able to open chrome and fill the details of the email (subject,body,attachments and all) but i wanted to know is there any way i can click Send button of G-Mail programmatically too?
Code for filling details in chrome
Process ps = Process.Start("chrome.exe", "https://mail.google.com/mail/u/0/?view=cm&fs=1&tf=1&to=a@gmail.com&bcc=b@gmail.com);
Note I haven't used SmtpClient
to send email because it was not fulfilling my customized requirement (sorry cannot disclose the reason).