Email notification of blog comments

Does anyone know if .mac offers instant email notification when someone leaves a comment on your blog? If so, how do I turn that on?
Before switching to iWeb 08, I used RapidWeaver to create my blog, hosted it on a server other than .mac, and used Haloscan to manage the comments. Instant email notification on all blog comments was a feature of Haloscan that I was hoping to have with .mac as well.
Anybody know? Thanks

iComment didn't need to be updated to be used with iWeb '08 it just worked well with it and it still does.
The good thing about iComment, despite the e-mail notification, is that you can add comments to every page you like, not only on blogs and PhotoPages like .Mac's Comments.
http://alyeska.altervista.org/en/iWebFeedbackComments.html
Regards,
Cédric

Similar Messages

  • Email notification for blog updates

    Are you kidding me? Wordpress, and everyone else offers email notification for blog updates. But iWeb doesn't? There is no widget we can use or anything? Just the RSS subscribe button provided? I even tried going through Feedburner, but that doesn't help. You would think iWeb would offer what is pretty commonplace these days. Help?

    The iWeb blog is not very good or user friendly - you need to have access to a Mac and iWeb to update it.
    I don't use it myself, preferring to create my own blog in WordPress. On my old website I used to display my blog as an iframe on my site, but now that I have updated my site, I just create a link to it from my site and it opens in a new frame.
    I find it a lot easier than using the iWeb blog - you can update online and I would not consider using iWeb blog until they improve it in updates to come.

  • Email notification on user comments

    Is there a way to get an email when someone comments on a photo or a blog entry?
    Thanks!
    Rudi

    You could add a comment and email notification to the photo page with an HTML Widget snippet. The code, courtesy of duannisok, can do it for you:
    <FORM ACTION="mailto:[email protected]?subject=Email Subject you see when someone fills out your form " ENCTYPE="text/plain">
    COMMENTS:
    <TEXTAREA NAME="Comment" ROWS=5 COLS=50></TEXTAREA>
    <INPUT TYPE=submit VALUE="Send Form ">
    <INPUT TYPE=reset VALUE="Reset Form">
    </FORM>
    I make some changes to his original post to get what you see at the bottom of this test page. The email will come directly to you with the email Subject that you put in the code.
    OT

  • Send Email Notification when comment blog in Sharepoint 2010

    Hi,
    Anyone can help me, when i comment on the blog, then send email directly ?. According to this link http://www.sitefinity.com/devnet/forums/sitefinity-3-x/general-discussions/blog-comment-notification.aspx 
    Its make some development or modifications, beside that is there any other way to do that without making modifications? probably just setting up in sharepoint admin?
    Please advice,
    Regards

    Hi
    I just found out that the the blog comments are stored in a list
    htp://yoursite/Blog/Lists/Comments/AllComments.aspx
    So you can write a workflow to send an email when a new item is created in this list.

  • How do I stop getting email notifications every time someone replies to a post I commented on?

    I have changed my settings to "no" for ALL email options in the preferences pane, and am still receiving tons of emails. I commented on an apparently very popular thread a few days ago, and every few hours I get 5-10 new emails that are all just new comments on the thread. It's very annoying since my email chime is constantly going off for garbage.

    If it's just the one thread, simple answer is to click the "Stop email notifications" option to the right of the first post. That won't affect other threads and you don't have to wade through all your other notification settings.

  • SSPR Email Notification

    I had the SSPR working fine, now i wanted to add a notification for the user after the password was reset. i have followed this 
    http://social.technet.microsoft.com/forums/forefront/en-US/1ac1f8e4-d8d5-4672-aa58-d6db869e88dc/sspr-email-notification 
    Now i have added a notification step under the Password Reset Action Workflow. Now i am getting the error below 
    Requestor: urn:uuid:b0b36673-d43b-4cfa-a7a2-aff14fd90522
    Correlation Identifier: f542ab53-73b0-4cf1-9d74-f270812caa57
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> Unable to retrieve a workflow instance with the specified identifier 'f67bc2b4-dadb-499a-9cac-387402e147fc'.
       --- End of inner exception stack trace ---
    Can anyone help ?
    Hany George | Consultant | IDC S.p.A | MCITP: Lync Server | MCITP: Exchange 2010 | MCTS: OCS | Blog: http://dusk1911.wordpress.com/ | If this post has been useful please click the green arrow to the left or click Propose as answer

    If you modified the out the box workflow to include the notification then see the below link:
    http://blog.predica.pl/fim-2010-authorization-workflow-fails-with-eventid-3/#comment-5411
    It seems that updating that SSPR workflow can cause it to break because of a framework change inside of the XML.  I had a similar problem like you described and taking the actions from the article above resolved it.
    Thanks,
    Scott

  • Cannot Send Email Notification Using Stored Procedure.

    Hi Friends,
    I tried to execute this job scheduler...
    begin
    dbms_scheduler.create_job(
    job_name => 'ILMS_JOB_SCHEDULE'
    ,job_type => 'PLSQL_BLOCK'
    ,job_action => 'begin ilms.check_reminder(); end; '
    ,start_date => SYSTIMESTAMP
    ,repeat_interval => 'FREQ=DAILY'
    ,enabled => TRUE
         ,end_date => NULL
    ,comments => 'Ilms job schedule for notification.');
    end;
    However, since the effect is too long I rescheduled the frequency to be every one minute in this set attribute...
    BEGIN
    DBMS_SCHEDULER.SET_ATTRIBUTE(
              name => 'ILMS_JOB_SCHEDULE'
              ,attribute => 'repeat_interval'
              ,value => 'FREQ=MINUTELY;INTERVAL=1'
    DBMS_SCHEDULER.DISABLE('ILMS_JOB_SCHEDULE');
    DBMS_SCHEDULER.ENABLE('ILMS_JOB_SCHEDULE');
    END;
    Check Reminder is the stored procedure invoked by job scheduler to check values in database columns before sending email notification to the respective recipients' email address and also the format of the email notification to be sent to the recipients...
    CREATE OR REPLACE PROCEDURE check_reminder AS
    NO number;
    CURSOR emp_cur is
    select * from pergerakan_ks where TASK_FLAG=7 and TASK_STATUS='InProgress';
    emp_rec emp_cur%rowtype;
    email_to varchar2(200);
    default_email varchar2(200);
    mesg varchar2(4000);
    no_kes varchar2(100);
    subj varchar2(4000);
    kpi number;
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    BEGIN
    default_email:='@abc.com.my';
    FOR emp_rec in emp_cur
    LOOP
    if emp_rec.PKS_TKH_TERIMA is null then
    dbms_output.put_line('count day ' || round(sysdate - to_date(emp_rec.pks_tkh_hantar)) || crlf || crlf);
    if round(sysdate - to_date(emp_rec.pks_tkh_hantar)) >3 then
    email_to:=emp_rec.pks_penghantar_id||default_email;
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    dbms_output.put_line('update old pergerakan pks_id : '||emp_rec.pks_id);
    update pergerakan_ks set task_status='Done' where pks_id=emp_rec.pks_id;
    dbms_output.put_line('insert new pergerakan ks : ');
    insert into pergerakan_ks(pks_id,pks_ks_id,pks_km_id,pks_penghantar_id,pks_tkh_hantar,
    pks_penerima_id,pks_tkh_terima,task_name,task_owner,task_status,task_flag,fb_id)
    values(pks_id_seq.nextval,emp_rec.pks_ks_id,emp_rec.pks_km_id,
    emp_rec.pks_penghantar_id,sysdate,
    null,
    null,emp_rec.task_name,
    emp_rec.pks_penghantar_id,
    'InProgress',6,emp_rec.fb_id);
    commit;
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    end if;
    if emp_rec.PKS_TKH_TERIMA is not null then
    dbms_output.put_line('emp_rec.pks_km_id ' || emp_rec.pks_km_id || crlf);
    select c.KM_KPI into kpi from keluar_masuk_ks c where c.KM_ID = emp_rec.pks_km_id;
    no := round(sysdate - to_date(emp_rec.pks_tkh_terima))-kpi;
    dbms_output.put_line('count day - kpi' || no || crlf);
    dbms_output.put_line('kpi ' || kpi || crlf);
    if no = 1 then
    email_to:=emp_rec.pks_penghantar_id||default_email;
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    email_to:=emp_rec.task_owner||default_email;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    e_mail_message(email_to,email_to,subj,mesg);
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    if no = 3 then
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    email_to:=emp_rec.task_owner||default_email;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    end if;
    END LOOP;
    END;
    E_mail_message is the stored procedure invoked by the check_reminder to tell scheduler information of the connection and the email address of the recipients...
    CREATE OR REPLACE procedure
    e_mail_message
    from_name in varchar2,
    to_name in varchar2,
    subject in varchar2,
    message in varchar2
    is
    l_mailhost VARCHAR2(64);
    l_from VARCHAR2(64);
    l_to VARCHAR2(64);
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    l_mail_conn UTL_SMTP.connection;
    mesg VARCHAR2( 4000 );
    BEGIN
    select a.SERVER into l_mailhost from email_setting a where a.SERVER is not null;
    select a.USERNAME into l_from from email_setting a where a.SERVER is not null;
    --UTL_SMTP.open_data(l_mail_conn);
    mesg:= 'Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || crlf ||
    'From: <'||l_from||'>' || crlf ||
    'Subject: ' ||subject|| crlf ||
    'To: '||to_name || crlf || '' || crlf ;
    mesg:=mesg||message;
    l_mail_conn := UTL_SMTP.open_connection(l_mailhost, 25);
    UTL_SMTP.helo(l_mail_conn, l_mailhost);
    UTL_SMTP.mail(l_mail_conn, l_from);
    UTL_SMTP.rcpt(l_mail_conn, to_name);
    UTL_SMTP.data(l_mail_conn, mesg);
    UTL_SMTP.quit(l_mail_conn);
    END;
    I tried to execute to execute the e_mail_message procedure but received this error. Also, no notification sent to the email address...
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 241
    ORA-06512: at "ILMS.E_MAIL_MESSAGE", line 33
    ORA-06512: at line 13
    Please help so that I can receive the email notification into my email...thanks in advance for your time..

    user13281540 wrote:
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 241
    ORA-06512: at "ILMS.E_MAIL_MESSAGE", line 33
    ORA-06512: at line 13This is not an Oracle error - this is the mail server saying "+hey, I don't like that e-mail address you are supplying, I'm not accepting it!+".
    If you look at RFC821 (Request For Comments memo 821 describes the SMTP specifications), you'll see that the sender and recipient needs to be supplied in the format +<[email protected]>+, e.g. +<[email protected]>+.
    I have found that not all SMTP servers are equal in this regard. Some may insist on the brackets around the address, some may not.
    You need to confirm the format of the addresses you use in the "+MAIL FROM+" and "+RCPT TO+" commands.. and ensure that these formats are accepted by your SMTP server - and if not, change your code to use an acceptable format.
    The easiest way to do this is using telnet - and interacting directly and manually with the server. SMTP is a clear text protocol and easy to use manually. Try it. It is the best way to test SMTP interaction and validate the approach and SMTP commands and arguments used by your code.

  • Text/Email notifications won't clear

    I was having issues with my text/email notifications not clearing on the dock and was told I had to do a factory reset. So i did that and I was still having the problem after i set my phone up again. I found that once I went into the Developer Options and chose the option "Do not keep Activities," so I unchecked that box and it fixed the problem once i got a new message or restarted the phone and haven't had that problem since.

    I don't have all the things that you list.
    I have:
    Actions
         Receive email notifications (or not)----which I chose & hope that that works.
         Bookmark this
    I have already checked 'no' to all emails, which is NOT what I want. If there are more comments to my questions, I would like to see them, but there is no option for that. I have 2349 emails, certainly not related to MY question.  (And I am NOT shouting... trying to make a point.
    How can I keep up with what is going on in the Apple Support Community if I say NO to all of the emails?
    And why can't we copy or cut & paste here????? If one copies or cuts it won't allow paste. It gives only options ot insert links & such???
    How do you people keep up with this community IF you don't get a gazillion emails?
    Thanks.

  • How do I stop receiving email notifications?

    I placed a comment on the a topic "unknown data uasage early morning" and set it up so I received email notifications when further postings occurred. After hundreds of emails I changed my email preferences to stop receiving them. Doesn't work!! They still keep coming and every day I have to clear out my email of these now nuisance emails. Can anybody help me??

    Stopping email from the site is a three step process. Before you dismiss this out of hand give it a try. If you still get emails I'll alert a host.
    Go to your profile page.
    Select the Notifications tab clear out anything that shows there.
    Go back to your profile
    In the Actions box select Preferences
    Select the Email Notifications Preferences tab
    Set the values as you like
    Go back to your profile
    In the Actions box select Manage Email Notifications
    delete any that show
    that should do it
    regards

  • Making checkbox selections/options visible on the request details and email notification details -FIM 2010 R2

    How do I make the checkbox selections made by users in FIM RCDC visible on the email notifications and on the request details on the request in the portal?
    Phina

    Congrats to Wim on a great article!
     Forefront Identity Manager Technical Guru - October 2014  
    Wim Beck
    Event Driven Scheduling of Forefront Identity Manager (FIM) using a Windows Service
    Ed Price: "Fantastic job on formatting, the code, and all the explanations! The TOC and References are a nice touch!"
    PG: "Nice innovative solution, that is a nice add-on to existing solutions. " 
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Can I insert the name poperty of the RequestedByUser related object of the parent Change Request workitem in a review activity email notification template?

    I am working on a SCSM change control workflow driven by email. 
    A lot of my work is based on the information found in this post:
    http://blogs.technet.com/b/servicemanager/archive/2012/04/03/using-data-properties-from-the-parent-work-items-in-activity-email-templates.aspx#pi158453=4
    This is an excellent post to which my Internet searches continually return. The workflow is about 90% complete. 
    My question is can I insert the properties of a related object of the parent workitem in a workflow email notification? 
    For example, I want to include the name property of the RequestedByUser related object of the parent workitem object in a review activity notification.

    Thank you for your reply.  I have confirmed my template is using a projection that includes the parent workitem and requested by user.  Where I am having trouble is the notification template syntax used to call the properties of the related
    object of the parent workitem.  The picker in the GUI won't show that related object, so I have no example to follow.  I hope this reply makes sense!

  • SAP BPC 10.0 Netweaver : Workstatus email notification sender is the User how to change it ?

    Hi Gurus,
    I've just set up email notification for Workstatus. I works fine but I've noticed something that won't be accepted by my customer :
    I Had created a BPC Service User SMAIL to send email notification. But it is useless since the email notification sender is always the user who actually made the workstatus change.
    This is very strange because this means that SAP can send emails IN NAME of Users. By default the email used is the user's email set up in SU01 and if the user has no email the sender mail adresse is : USERID@DEFAULTHOST
    Default domain defined in SCOT transaction for SAPCONNECT.
    I think that this situation raises a security breach ; to my opinion SAP should not be able to send emails in the name of users.
    Do you have any idea to change this situation in order to make all notification emails send by one unique System User as BPCSERVICEMAIL for instance.
    Thanks in advance for you help.
    Vincent.

    Hi JW,
    The answer to your question #2 is that we won't have SSIS packages in BPC7NW since all SQL server based functionality won't be there in Netweaver version. If you use migration tools to migrate from BPC5.x to BPC7NW, it can convert SSIS packages. However any custom SSIS code would have to be converted manually. For more information, please read Ryan's blog at SAP's definitive strategy for planning technologies moving forward: What's the word on BPC, BI-IP and SRC?
    Regards
    Pravin

  • Sending email Notifications from BPM 11.1.1.5+FP

    Hi all,
    We're trying to send an email notifications from our process but we need to send HTML mails, not just plain text...
    Any help would be appreciated.
    Thanks in advance

    1. Configure the UMS Email Driver in Enterprise manager
    2. onfigure the SOA Suite Workflow Notification properties
    3. Restart the soa server
    4. On the BPM Process, drag the mail notification from the notification category.
    5. update the mail notification properties such as to address, title, and content etc.
    For the configuration, please refer the following url
    http://technology.amis.nl/blog/6019/configure-soa-suite-11g-for-sending-email-notifications-with-google-mail

  • Email notification retry

    Hi,
    Does anyone know if Identity Manager email notifications get automagically resent if they failed intially (because the SMTP server was down)? In my test environment it doesn't.
    1. set-up email notifications correctly
    2. make sure smtp server is running
    3. trigger email notification (by running some workflow)
    4. notification received
    5. shut down smtp server
    6. trigger email notification (...)
    7. IDM returns error message
    8. start smtp server
    9. never receive notification triggered in step 6
    Does somebody have a good workaround for this?
    Thanks,
    Robin

    Hi Tirumal,
    Configure 2 alerts.
    One to be triggered when there is the error in tramsmitting the SOAP XML.
    Next to be triggered after the retry for 8 hours. If you are using the BPM with wait, then you can associate the Alert with the Exception block of your BPM and trigger the same.
    Also, from SP14, Alerts can be triggered for errros in both integratioon engine and adapter engine.
    To create alerts , this blog can help you out,
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    From SP14 onwards, activation of end to end monitoring is not needed for Alerting. Refer to this note 870232 for this info.
    If you are on Sp14, implement the note 913858.
    If you are below SP14, then also check this blog,
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    Regards,
    Bhavesh

  • Add User Input in Email Notification Template

    Hi all, I'm new to SM and in need of anyone's assistance. I've created a service request and in the template under User Input, I have it requesting the "New Users Name" and the "Start or Termination Date". I'd like to add these 2
    inputs into my Email Notification Template. How can this be done? I've been able to insert the Title, Requestor, Alternative Number, and Description in the Template Design but can't seem to find where I can add these Inputs. Any help would be
    appreciated. Thanks in advance.

    Hi,
    Please refer to the link below:
    E-mail user from Service Manager Console
    http://blogs.technet.com/b/servicemanager/archive/2010/02/02/e-mail-user-from-service-manager-console.aspx
    Moreover, the video  [09:00-11:00 min] might be help you:
    Demo: Automating Service Request Fulfillment from the SCSM Service Catalog with Orchestrator
    http://blogs.technet.com/b/servicemanager/archive/2011/11/09/demo-automating-service-request-fulfillment-from-the-scsm-service-catalog-with-orchestrator.aspx
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • Illustrator Problems CS3 13.0.1 - CRASHES

    After extensive amounts of searching these forums and searching the intra web, I am still having problems with Illustrator CS3 crashing. Here is what it's doing: - Crashing on copy and paste to Flash CS3 - Crashing on any previous *.ai saves - Crashi

  • Dynamic image in table  in adobe PDF form

    Hi experts                 I have been using a table in interactive form . In table I have a image field in which I want to insert employee pic which is comming in table as a URL . I have craeted a image field and attached tha table field to it but i

  • Possible to paste images into the Note app?

    Hi there Is it possible to paste an image (pdf, jpg etc) into Apple's Note app and then to view it on the iPad? Here's the scenario: MBP Using Apple's Notes app All my notes and folders are on iCloud / Nothing locally Paste a standard small jpg image

  • Jre vs. java

    First - Thanks in advance for any responses! I have a .jar file that runs fine like this... java -jar client.jar (java 1.4) But if I move the file to another platform - that has java 1.1.6, I can only use jre - and the following occurs, jre -cp clien

  • Problem with bar graphs in Crystal Report

    Hi All, I am currently working on bar graphs and i am facing problem displaying trend in the graph when there is no data for any particular date. My X-axis has date and y-axis has data. I want to display all the dates on x-Axis which is selected by t