Skip to main content

I forgot to ask a question about this Blog

I set this up so I receive an e-mail whenever a post or a comment was left by me or anyone else. Do you guys get that option. I know you get the option of subscribing to a particular post/thread, but do you have the option to subscribe to any post or any comment globally and get e-mail?
I cannot tell because I'm an Admin and an Author but I made all of you Authors as well.
Please could someone let me know.
Also, can you guys just let me know if you think this is better than the course info dicussion board or not?
TIA

Comments

  1. In the "Followers" section to the right, next to my name I clicked on 'options' then 'site settings' , which brings me to a settings page. On that page I clicked on 'messaging' and it gave the following checkbox options:

    Messaging options for this site:
    Allow site members to send messages to your email address.
    Receive site newsletters and communication from Youssef's Blog

    So, I'll see if I get an email when someone posts or comments...

    ReplyDelete
  2. oh! I wanna check that cause i dont receive emails... I just randomly check everyday to see if someone has post something new.

    ReplyDelete
  3. I feel like this is a lot cleaner than the discussion board. It doesn't quite highlight new messages as well, but the subject matter can be chunked, tagged, and sorted easier.

    ReplyDelete

Post a Comment

Popular posts from this blog

Wave Undo

To implement Undo, the simplest way is to use a MemoryStream object in your WaveDisplayForm (MDI Child) and simply serialize the Wave (which should be marked as [Serializable] to the stream and hold on to the stream object. private MemoryStream _undoStream = new MemoryStream(); private bool _canUndo = false; public void SaveForUndo() {      BinaryFormatter bf = new BinaryFormatter();      bf.Serialize(_undoStream, wave);      _undoStream.Flush();      // This rewinds the stream so that when it is used for deserialization, it's ready to use,     // otherwise, the deserialization will start deserializing from the end of the stream and would fail.      _undoStream.Position = 0;      _canUndo = true; }   public void Undo() {      BinaryFormatter bf = new BinaryFormatter();      ...