EPrints Technical Mailing List Archive
Message: #07122
< Previous (by date) | Next (by date) > | < Previous (in thread) | Next (in thread) > | Messages - Most Recent First | Threads - Most Recent First
Re: [EP-tech] Ask about frequency of items-under-review mailings:
- To: <eprints-tech@ecs.soton.ac.uk>
- Subject: Re: [EP-tech] Ask about frequency of items-under-review mailings:
- From: Ajunk Pracetio <prazetyo@gmail.com>
- Date: Thu, 1 Feb 2018 08:21:50 +0700
my $bool = $user->is_staff();
my $staff_email = $bool->get_value( "email" ); #for editor/administrator
...
to_email => $staff_email
var/last_changed.timestamp has been modified since the repository config was loaded: reloading!
Hi,
That looks OK to me.
First, try with a hardcoded email address on this line:
to_email => #EDITOR OR ADMINISTRATOR EMAIL?,
You need to use single-quotes:
to_email => 'the.email@domain.com',
if you use double-quotes, it might not work.
Let me know if that helps. If it doesn't, is there anything in the error log?
You could add something to put a message into the Apache log to check the email looks like it's been sent:
my $userMailOK = EPrints::Email::send_mail(
…
);
print STDERR "inbox to buffer email result: $userMailOK\n";
If that does work, the next question is 'how many editors do you have?'.
If it's just one (or there more than one, but they use a shared mailbox), hard-coding the email address might be OK.
If you have lots of editors, and they have different 'scopes' (you could allow one editor to process theses, another one to process journal articles), then we can do something like:
- get all editors
- see if the item is 'in scope' of that editor
- email them if it is!
Let me know how you get on!
Cheers,
John
From: eprints-tech-bounces@ecs.
soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk ] On Behalf Of Ajunk Pracetio
Sent: 31 January 2018 09:13
To: eprints-tech@ecs.soton.ac.uk
Subject: Re: [EP-tech] Ask about frequency of items-under-review mailings:
Hi John,
I already try this and success. But it only for live archive, not for item that just deposited. I already try add below, but I dont know is it right or wrong.
$c->add_dataset_trigger( "eprint", EP_TRIGGER_STATUS_CHANGE, sub{
my( %o ) = @_;
my $eprint = $o{dataobj};
my $old_status = $o{old_status};
my $new_status = $o{new_status};
my $session = $eprint->get_session;
my $user = $eprint->get_user(); #user that only editor/administrator only
my $user_email = $user->get_value( "email" ); #when you are testing, set this to your email - so you don't spam people!
# EXAMPLE of a deposit receipt
if( $old_status eq "inbox" && $new_status eq "buffer" ){
# send a deposit receipt?
# Do something similar to the stuff below - but with different phrases!
my $title = $eprint->render_value( "title" );
my $users_name = $user->render_value( "name" );
my $mail = $session->make_element( "mail" );
$mail->appendChild( $session->html_phrase( "status_change_inbox_to_review_body",
users_name => $users_name,
title => $title
) );
my $userMailOK = EPrints::Email::send_mail(
session => $session,
langid => $session->get_langid,
to_email => #EDITOR OR ADMINISTRATOR EMAIL?,
subject => $session->phrase( "status_change_inbox_to_review_subject" ),
message => $mail,
sig => $session->html_phrase( "mail_sig" )
);
}
# NOTIFICATION FOR LIVE ARCHIVE
if( $old_status eq "buffer" && $new_status eq "archive" ){
# you might want to check what the datestamp is - and not send an email if this item has
# been moved from archive -> buffer -> archive for some reason.
my $title = $eprint->render_value( "title" );
my $users_name = $user->render_value( "name" );
my $url = "" $eprint->get_url );
$url->appendChild( $session->make_text( $eprint->get_url ) );
my $mail = $session->make_element( "mail" );
$mail->appendChild( $session->html_phrase( "status_change_buffer_to_archive_user_body",
users_name => $users_name,
title => $title,
eprint_url => $url
) );
my $userMailOK = EPrints::Email::send_mail(
session => $session,
langid => $session->get_langid,
to_email => $user_email,
subject => $session->phrase( "status_change_buffer_to_archive_user_subject" ),
message => $mail,
sig => $session->html_phrase( "mail_sig" )
);
# you could check the value of $userMailOK - in case the email wasn't sent
} # END of buffer-to-archive
});Thank you
On Tue, Jan 30, 2018 at 5:13 PM, John Salter <J.Salter@leeds.ac.uk> wrote:
Hi Agung,
Yes - there is a way to do this.
I wrote this page a while ago to explain how - let me know if there are parts that you don't understand!
https://wiki.eprints.org/w/
Sending_email_when_item_is_ made_live_or_deposited
Cheers,
John
From: eprints-tech-bounces@ecs.
soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk ] On Behalf Of Ajunk Pracetio
Sent: 28 January 2018 06:52
To: eprints-tech@ecs.soton.ac.uk
Subject: [EP-tech] Ask about frequency of items-under-review mailings:
Hi,
Is it possible to send email frequencies directly to the editor whenever a depositor uploads an item? Because the setting is only once per day.
If you have to make modifications, which files should I edit?
thank you.
Greetings,
Agung P.W
--Life isn't valuable if you don't have someone to care
*** Options: http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints- tech
*** Archive: http://www.eprints.org/tech.php/
*** EPrints community wiki: http://wiki.eprints.org/
*** EPrints developers Forum: http://forum.eprints.org/
--Life isn't valuable if you don't have someone to care
*** Options: http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints- tech
*** Archive: http://www.eprints.org/tech.php/
*** EPrints community wiki: http://wiki.eprints.org/
*** EPrints developers Forum: http://forum.eprints.org/
--
- Follow-Ups:
- Re: [EP-tech] Ask about frequency of items-under-review mailings:
- From: Ajunk Pracetio <prazetyo@gmail.com>
- Re: [EP-tech] Ask about frequency of items-under-review mailings:
- References:
- [EP-tech] Ask about frequency of items-under-review mailings:
- From: Ajunk Pracetio <prazetyo@gmail.com>
- Re: [EP-tech] Ask about frequency of items-under-review mailings:
- From: John Salter <J.Salter@leeds.ac.uk>
- Re: [EP-tech] Ask about frequency of items-under-review mailings:
- From: Ajunk Pracetio <prazetyo@gmail.com>
- Re: [EP-tech] Ask about frequency of items-under-review mailings:
- From: John Salter <J.Salter@leeds.ac.uk>
- Re: [EP-tech] Ask about frequency of items-under-review mailings:
- From: Ajunk Pracetio <prazetyo@gmail.com>
- [EP-tech] Ask about frequency of items-under-review mailings:
- Prev by Date: Re: [EP-tech] Very slow access, File not found, Error Generating views
- Next by Date: Re: [EP-tech] Ask about frequency of items-under-review mailings:
- Previous by thread: [EP-tech] Sort view with creators_name and corp_creators
- Index(es):