Subscribe

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
3/3/2010 7:29:57 PM
Gravatar
Total Posts 171
I am a Russian programmer

Subscribe

Hi, Joe

Please uncomment

//TODO: keep a separate count for validated vs not validated?
//LetterInfo.UpdateSubscriberCount(subscription.LetterInfoGuid);
in Confirm.aspx.cs

because  after confirmation of the subscription system does not recalculate the number of confirmed subscribers

 

and more I think it would be better to replace

Subscribe.ascx.cs

private void DoSubscribe(LetterInfo letter, string email)

messageTask.EmailFrom = siteSettings.DefaultEmailFromAddress;
to

if (letter.FromAddress.Length != 0)
  messageTask.EmailFrom = letter.FromAddress;
else
  messageTask.EmailFrom = siteSettings.DefaultEmailFromAddress;

 

Best regards, Alexander

3/5/2010 7:58:23 AM
Gravatar
Total Posts 18439

Re: Subscribe

Hi Alexander,

I agree and just made these changes in my copy.

Thanks,

Joe

You must sign in to post in the forums. This thread is closed to new posts.