From b35bbd039345e2f838c53db7cb944a1ae17afb35 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 28 Dec 2011 12:48:18 +0100 Subject: [PATCH] Comments --- htdocs/core/class/CMailFile.class.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/htdocs/core/class/CMailFile.class.php b/htdocs/core/class/CMailFile.class.php index e83256cddec..8ab422c7e12 100644 --- a/htdocs/core/class/CMailFile.class.php +++ b/htdocs/core/class/CMailFile.class.php @@ -1,5 +1,8 @@ +/** + * Copyright (C) Dan Potter + * Copyright (C) Eric Seigne + * Copyright (C) 2000-2005 Rodolphe Quiedeville * Copyright (C) 2003 Jean-Louis Bergamo * Copyright (C) 2004-2009 Laurent Destailleur * Copyright (C) 2005-2009 Regis Houssin @@ -24,9 +27,6 @@ /** * \file htdocs/core/class/CMailFile.class.php * \brief File of class to send emails (with attachments or not) - * \author Dan Potter. - * \author Eric Seigne - * \author Laurent Destailleur. */ /** @@ -37,9 +37,12 @@ */ class CMailFile { - var $subject; - var $addr_from; - var $errors_to; + var $subject; // Topic: Subject of email + var $addr_from; // From: Label of sender (name but can contains an email inside <>) + // Sender: Who send the email ("Sender" has sent emails on behalf of "From"). + // Use it with an email from a sending host from is a SPF protected domain and sending host is not this domain. + // Return-Path: Email where to send bounds. + var $errors_to; // Errors-To: Email where to send errors. var $addr_to; var $addr_cc; var $addr_bcc;