* This is the modus mailing list *

OK I spent my two minutes searching and came up with the ASP code fix.

In ASPROOT open WriteMessage.asp using wordpad

Search for the string NewMessage.From.Name

you will see this code
  
  NewMessage.From.Name = Settings("DisplayName")
  
Change it to the following.

  If Settings("DisplayName") = "" Then
        NewMessage.From.Name = VopWeb.EmailAddress
  Else
        NewMessage.From.Name = Settings("DisplayName")
  End If

The code just below it does the same for the email address if that is set.

Tested and works great

Regards,

Dave Joyce
Internet Manager
RTC on Line

**
To unsubscribe, send an Email to: [EMAIL PROTECTED]
with the word "UNSUBSCRIBE" in the body or subject line.

Reply via email to