I was hoping this was fixed!
- That’s an error.
The requested URL /mail/… is too large to process. That’s all we know.
I was hoping this was fixed!
The requested URL /mail/… is too large to process. That’s all we know.
Wondering what could be the cause. Are you at the very least able to use the manual mail method? Does it depend on the feed?
I can use manual but I like the instant fill in with the address!
OK, so are you able to send any emails at all? Is it only one feed?
I can send emails through the NB email but I still get errors anytime I try to use Thunderbird. Any feed.
Ohhhhh, NewsBlur emails work fine, it’s just the manual button doesn’t work. Well, it’s a mailto: link, so Thunderbird should be setup to use it. Here’s the code, and as you can see, it’s pretty simple:
var from_name = $(‘input[name=from_name]’, this.$modal).val();
var from_email = $(‘input[name=from_email]’, this.$modal).val();
var to = $(‘input[name=to]’, this.$modal).val();
var comments = $(‘textarea’, this.$modal).val();
var url = [
‘mailto:’,
to,
‘?subject=’,
from_name,
’ is sharing a story: ‘,
this.story.story_title,
‘&body=’,
comments,
‘%0D%0A%0D%0A–%0D%0A%0D%0A’,
this.story.story_permalink,
‘%0D%0A%0D%0A’,
$(this.story.story_content).text(),
‘%0D%0A%0D%0A’,
‘–’,
‘%0D%0A%0D%0A’,
‘Shared with NewsBlur.com’
].join(’’);
window.open(url);
ok! where do I put that exactly?
got it! thanks!