I am attempting to use the RadSocialShare control to allow users of my web site to tell others about the link. I have used the following code:
<telerik:RadSocialShare ID="RadSocialShare1" runat="server" CssClass="emailwrapper" Skin="Sitefinity" EnableEmbeddedSkins="true" >
<MainButtons>
<telerik:RadSocialButton SocialNetType="SendEmail" ToolTip="Email" CustomIconUrl="Images2/product/emailtofriend.png"/>
</MainButtons>
</telerik:RadSocialShare>
I am getting the following message when I attempt to send an email:
"Ooops!:( An error has occurred!"
I have got a section in my web.config for
<system.net>
<mailSettings>
<smtp from="customerservices@mywebaddress.com" deliveryMethod="Network">
<network host="myisprelayserver.net" port="25" defaultCredentials="true" />
</smtp>
</mailSettings>
</system.net>
These settings work when I send mail in code using SmtpClient.Send() in another part of my application
Does anyone have any ideas why I might be getting this error?
<telerik:RadSocialShare ID="RadSocialShare1" runat="server" CssClass="emailwrapper" Skin="Sitefinity" EnableEmbeddedSkins="true" >
<MainButtons>
<telerik:RadSocialButton SocialNetType="SendEmail" ToolTip="Email" CustomIconUrl="Images2/product/emailtofriend.png"/>
</MainButtons>
</telerik:RadSocialShare>
I am getting the following message when I attempt to send an email:
"Ooops!:( An error has occurred!"
I have got a section in my web.config for
<system.net>
<mailSettings>
<smtp from="customerservices@mywebaddress.com" deliveryMethod="Network">
<network host="myisprelayserver.net" port="25" defaultCredentials="true" />
</smtp>
</mailSettings>
</system.net>
These settings work when I send mail in code using SmtpClient.Send() in another part of my application
Does anyone have any ideas why I might be getting this error?