Hi, after installing the latest version I cannot send mail (testing the about form). Apparently an empty address somewhere, but where do I put it?
The following is from the log: (Parametern is Swedish for parameter, Parameternamn is Parameter name, vid is probably by or near)
System.ArgumentException: Parametern address kan inte vara en tom sträng.
Parameternamn: address
vid System.Net.Mail.MailAddress..ctor(String address, String displayName, Encoding displayNameEncoding)
vid System.Net.Mail.MailAddress..ctor(String address)
vid mojoPortal.Net.Email.SendEmailNormal(SmtpSettings smtpSettings, String from, String to, String cc, String bcc, String subject, String messageBody, Boolean html, String priority)
vid mojoPortal.Net.Email.SendEmail(SmtpSettings smtpSettings, String from, String to, String cc, String bcc, String subject, String messageBody, Boolean html, String priority)
vid mojoPortal.Web.ContactUI.ContactForm.btnSend_Click(Object sender, EventArgs e)
The following is in web.config:
<add key="SMTPServer" value="localhost"/>
<add key="SMTPRequiresAuthentication" value="false"/>
<add key="SMTPUseSsl" value="false"/>
<add key="SMTPPort" value="25"/>
<add key="SMTPUser" value=""/>
<add key="SMTPPassword" value=""/>
<add key="SMTPTimeoutInMilliseconds" value="15000"/>
<system.net>
<mailSettings>
<smtp from=noreply@xxx.xx>
<network host="localhost" port="25" password="" userName="" />
</smtp>
</mailSettings>
</system.net>