# Allow reply-to individual instead of topic/forum (mailing list feature)

**URL:** https://meta.discourse.org/t/allow-reply-to-individual-instead-of-topic-forum-mailing-list-feature/44905
**Category:** Support
**Created:** [27 במאי,‏ 2016,‏ 2:24pm UTC](https://meta.discourse.org/t/allow-reply-to-individual-instead-of-topic-forum-mailing-list-feature/44905 "2016-05-27T14:24:28Z")
**Posts on this page:** 1
**Showing post:** 19

<div class="post-metadata">

### Author: ![tarek](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tarek/32/124831_2.png) [@tarek](https://meta.discourse.org/u/tarek)
#### Post date: [2 ביוני,‏ 2016,‏ 6:51pm UTC](https://meta.discourse.org/t/allow-reply-to-individual-instead-of-topic-forum-mailing-list-feature/44905/19 "2016-06-02T18:51:21Z")

</div>

I’ve been playing around with the code, and arrived at this:

In line 148 of lib/email/message\_builder.rb, this would result in what I would like to do:

```ruby

      if allow_reply_by_email?
        result['X-Discourse-Reply-Key'] = reply_key
        result['Reply-To'] = "test1@test.com"
        result['CC'] = reply_by_email_address
      else
        result['Reply-To'] = from_value
      end

```

However, now I’m trying to figure out what the ‘sender email address’ variable would be in ruby world..

---

_[View the full topic](https://meta.discourse.org/t/allow-reply-to-individual-instead-of-topic-forum-mailing-list-feature/44905)._
