reply

Inserting > at the start of each line in reply e-mails

In my Rails app I have a mail section in which I want to append a > character at the start of each line when replying to a message. The challenge is, how do I know when to insert a > character given the block of text doesn't contain carriage returns according to the width of the textbox. ...

How Can I Get The Email Sender Address

Hello, I'm developing a email manager application(like outlook) in C# and I want to do a reply function, but how I can get the email address of the user that sent the email that will be replyed? Thanks. ...

[WordPress] Get Comment Reply Link Only?

I'm using comment_reply_link, for the reply links on every comment, but I want to use an image instead of text. I only need the link of the comment reply, not the whole thing. Codex wasn't helpful, neither the WP forums. <span class="reply"> <a href="<?php //comment reply link here ?>"> <img src="<?php bloginfo('template_url') ?>/...

How do I create a reply button for a Twitter client that automatically fills in a username in the 'tweet' form?

Using the Twitter API, and just want to have a simple 'reply' button on every tweet (say, 'How do I create a reply button?' from @kraykray) that automatically puts '@kraykray' into the tweet form. Don't need the system to log that it's any kind of special message. ...

Django blog reply system

hello, i'm trying to build a mini reply system, based on the user's posts on a mini blog. Every post has a link named reply. if one presses reply, the reply form appears, and one edits the reply, and submits the form.The problem is that i don't know how to take the id of the post i want to reply to. In the view, if i use as a parameter o...

System.Net.Mail.MailMessage "Reply-To" header is ignored in IIS 6.0 but OK in IIS 5.1

I have a web app project developed and unit-tested on a WinXP machine (IIS 5.1). It has been published to a Win2003Server (IIS 6.0). One feature of the app sends an email with a "Reply-To" header (snippet follows). On the IIS 5.1 machine, the Reply-To appears properly in the header. When sent from the IIS 6.0 PC, the header does not cont...

Django reply form included into question template

if a have a question - answer system, where the answer form is included in the template of questions,(just like facebook post-comments) is there another way to save the comments for every question? how can i take the id of the question? my code: {%include "replies/replies.html"%} #thats in the template where questions are listed the ...