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 commas instead of semi-colons for address separators.
http://suneel.jhangiani.net/Content\Downloads/Webmail-Addon-v3-b273.003.zip
Hi Suneel,
Does the above have all the spell checking and previous things you did included or are they separate?
Thanks in advance for your reply!
Jim
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 JhangianiInter-Computer Technology Ltd.
Modus3 Bug Buster Co-MVP
I keep trying to lose weight but it always finds me.
<<inline: 59de30f.gif>>
