Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var subject = prompt('(Optional) What is the subject?', 'Reminder');
- var time = prompt('Will default to 1 day if left blank.\nRefer to possible options by opening the link below.\nEnter the time:', 'https://goo.gl/bLcV3G');
- var optMsg = prompt('OPTIONAL (click OK to skip)\nEnter message/notes:');
- var message = '[' + location.href + ']' + '\n\nRemindMe! ' + time;
- if (optMsg == "") {
- var newLink = 'https://www.reddit.com/message/compose/?to=RemindMeBot&subject=' + encodeURIComponent(subject) + '&message=' + encodeURIComponent(message);
- } else {
- var newLink = 'https://www.reddit.com/message/compose/?to=RemindMeBot&subject=' + encodeURIComponent(subject) + '&message=' + encodeURIComponent(message) + ' %22' + optMsg + '%22';
- }
- if (time != null) {
- location.href = newLink;
- }
Add Comment
Please, Sign In to add comment