about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 3ebf9c3..9067450 100644
--- a/html.c
+++ b/html.c
@@ -41,8 +41,8 @@ static const char *Envelope = TEMPLATE(
 
 int htmlEnvelope(FILE *file, const struct Envelope *envelope) {
 	struct Variable mailtoVars[] = {
-		{ "mailbox", envelope->from.mailbox },
-		{ "host", envelope->from.host },
+		{ "mailbox", envelope->replyTo.mailbox },
+		{ "host", envelope->replyTo.host },
 		{ "re", (strncmp(envelope->subject, "Re: ", 4) ? "Re: " : "") },
 		{ "subject", envelope->subject },
 		{ "messageID", envelope->messageID },