당신은이 같은 첨부 파일로 Swift_Message
을 추가 할 수 있습니다
$attachment = new \Swift_Attachment($messageAttachment, 'some-email.txt', 'text/plain');
그러나 이메일은 이제 모든 메일의 세부 사항을 포함하는 .txt
파일로 첨부 할 것. 이것이 예상 된 행동인지 확실하지 않습니다!?
전체 예 :
$messageAttachment = (new \Swift_Message('Attached Email'))
->setFrom('[email protected]')->setTo('[email protected]')
->setBody("Attached Email Body", 'text/plain');
$attachment = new \Swift_Attachment($messageAttachment, 'some-email.txt', 'text/plain');
$message = (new \Swift_Message('Real Email'))
->setFrom('[email protected]')->setTo('[email protected]')
->setBody("Real Email Body", 'text/plain')
->attach($attachment);
$mailer->send($message);
첨부 some-email.txt
의 내용은 다음과 같이 표시됩니다
Message-ID: <[email protected]>
Date: Tue, 05 Dec 2017 17:00:05 +0100
Subject: Attached Email
From: [email protected]
To: [email protected]
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
Attached Email Body