Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーから基本的な入力を受け取るフォームを作成したいと思います。このデータを PDF ドキュメントの形式で別のユーザーに電子メールで送信したいと考えています。
ファイルをサーバーに保存せずにこれを達成する方法があるかどうかを知りたかったのです。
私は答えを得ました: PHPMailer を使用してこれを行うことができます。コードは次のようになります。
$mail = new PHPMailer(); ... $doc = $pdf->Output('', 'S'); $mail->AddStringAttachment($doc, 'doc.pdf', 'base64', 'application/pdf'); $mail->Send();