通过sendmail发送时如何显示收件人地址

时间:2019-04-21 09:34:51

标签: linux sendmail

我正在尝试发送

namespace App;

use Illuminate\Database\Eloquent\Model;

class Interest extends Model
{
    public function spaces()
    {
        // space_id is the column name in your space database table
        // id the the foreign-key target, generally is the primary-key of space table
        return $this->hasMany('App\Space', 'space_id', 'id');
    }
}

和“收件人”中的收件人看到空的或未公开的收件人。

如何删除“未公开的收件人”并显示收件人的电子邮件?

1 个答案:

答案 0 :(得分:1)

sendmail希望您在标准输入中提供标题。

-t选项告诉它从标头中获取收件人,因此您不需要将其作为参数。

{ echo "To: email@example.com"; echo; cat email.eml; } | sendmail -it

空的echo用于在标题和正文之间放置一个空白行。