Hi Guys,

 

Here is a link to the latest Web Mail Add-On release that includes the fixes for the From Address and the ability to use comma’s instead of semi-colon’s for address separators.

 

http://suneel.jhangiani.net/Content\Downloads/Webmail-Addon-v3-b273.003.zip

 

 

For those curious I implemented the From Address fix slightly differently to Brad. His method was:

 

  NewMessage.Recipients.Clear

 

  If Settings("DisplayName") <> null then

  NewMessage.From.Name = Settings("DisplayName")

  Else

  NewMessage.From.Name = VopWeb.EmailAddress

  End If

  NewMessage.From.Address = VopWeb.EmailAddress

 

My method is:

 

  If Settings("MessageFrom") > "" Then

            NewMessage.From.Address = CStr(Settings("MessageFrom"))

  Else

            NewMessage.From.Address = VopWeb.EmailAddress

  End If

 

  If Settings("DisplayName") = "" Then

            NewMessage.From.Name = Settings("DisplayName")

  Else

            NewMessage.From.Name = NewMessage.From.Address

  End If

 

I used this as it keeps the same functionality as the Vircom Code in pulling the Address from the Sessions State as well as the Display Name providing they exist there. That is also why I switched the order so that the Address gets set before the name.

 

 

Regards,
 
Suneel Jhangiani
Inter-Computer Technology Ltd.
 

Modus3 Bug Buster Co-MVP


I keep trying to lose weight but it always finds me.

 

 

<<image001.gif>>

Reply via email to