I use the code below to send invitations from my web calendar to other web users. I invitations get very good to outlook users and outlook web version, they have the accept and deny buttons and so on. And the message is in the mail body too. The
problem that when I send it to Gmail users, the invitation only appear as attachment, there is no "accept" or deny buttons and so on. In the message body there is only the html I send as "description".
Can I send this invitations from my dot net web page and make it appear the same in Gmail and outlook?
Thanks.
my code-
Public Shared Function sendOutlookInvitationViaICSFile(objApptEmail As eAppointmentMail) As String
Try
Dim sc As New SmtpClient("XXXXXXXXXXXXXXX")
Dim msg As New System.Net.Mail.MailMessage()
msg.From = New MailAddress("XXXXXXXXXXXXXX& ...
Go to the complete details ...