私は患者の医療レポートフォームを作成しました。作業は、適切なフォーマットで互換性のあるdocxファイル (ほとんどの場合、表と段落で構成されています) を生成し、フォームに入力された値を受け取り、どこにも保存せずに添付ファイルとして送信したいと考えています。
docx ファイルを作成するには、PHPWordプラグインを使用したいのですが、docx 生成用にHTMLtoDOCXも試しましたが、動的に生成された docx ファイルを添付して送信したいと考えています。( PHPDocxを使用するように言わないでください。コミュニティ バージョンがあり、空のファイルまたはテキストが追加されていないファイルが生成されるためです)
PHPMailerを使用してメールを送信しています。どこかにある永続的なファイルに使用されるため、AddAttachment関数を使用してファイルを添付したくありません。
現在、PHPMailerを使用して動的に生成されたdocファイルを送信できますが、ファイルはMS Word 2010と互換性がありません。doc ファイルを生成して添付ファイルとして送信するためのコードは次のとおりです。
$separator = md5(time());
$eol = PHP_EOL;
$headers = "MIME-Version: 1.0".$eol;
line-4 // $headers .= "Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document".$eol;
line-5 // $headers .= "Content-Type: application/vnd.ms-word.document.macroEnabled".$eol;
// attachment name
$filename = $a1 . " Medical Report.doc";
// Report Document
$report = " ".$a1 . " Medical Report".$eol.$eol.$eol;
$report .= "NAME | ".$a1.$eol;
$report .= "HOSPITAL No. | ".$a2.$eol;
$report .= "DATE of BIRTH | ".$a3.$eol;
$report .= "SEX | ".$a4.$eol;
$report .= "DATE of FOLLOW UP | ".$a5.$eol;
$report .= "DATE of IMPLANT | ".$a6.$eol;
$report .= "PACEMAKER | ".$a7.$eol;
$report .= "MODEL | ".$a8.$eol;
$report .= "PROGRAMMED RATE(bpm) | ".$a9.$eol;
$report .= "MAGNET RATE(bpm) | ".$a10.$eol;
$report .= "EOL/ERT RATE(bpm) | ".$a11.$eol;
$report .= "PROGRAMMED RATE(ms) | ".$a12.$eol;
$report .= "MAGNET RATE(ms) | ".$a13.$eol;
$report .= "EOL/ERT Rate(ms) | ".$a14.$eol;
$report .= "ATRIAL(amp) | ".$a15.$eol;
$report .= "RIGHT VENTRICLE(amp) | ".$a16.$eol;
$report .= "LEFT VENTRICLE(amp) | ".$a17.$eol;
$report .= "ATRIAL(pw) | ".$a18.$eol;
$report .= "RIGHT VENTRICLE(pw) | ".$a19.$eol;
$report .= "LEFT VENTRICLE(pw) | ".$a20.$eol;
$report .= "ATRIAL(mv) | ".$a21.$eol;
$report .= "RIGHT VENTRICLE(mv) | ".$a22.$eol;
$report .= "LEFT VENTRICLE(mv) | ".$a23.$eol;
$report .= "ATRIAL(ohms) | ".$a24.$eol;
$report .= "RIGHT VENTRICLE(ohms) | ".$a25.$eol;
$report .= "LEFT VENTRICLE(ohms) | ".$a26.$eol;
$report .= "BATTERY IMPEDANCE | ".$a27.$eol;
$report .= "CALC LONGEVITY | ".$a28.$eol;
$report .= "BATTERY VOLTAGE | ".$a29.$eol;
$report .= "ERI INDICATOR | ".$a30.$eol;
$report .= "CURRENT | ".$a31.$eol;
$report .= "STABILITY/MYO-POTENTIAL | ".$a32.$eol;
$report .= "VA CONDUCTION | ".$a33.$eol;
$report .= "WOUND CHECK | ".$a34.$eol;
$report .= "ECG RHYTHM | ".$a35.$eol;
$report .= "UNDERLYING RHYTHM | ".$a36.$eol;
$report .= "HISTOGRAMS %AGE PACING | ".$a37.$eol;
$report .= "PATIENT SYMPTOMS | ".$a38.$eol;
$report .= "COMMENTS | ".$a39.$eol;
$report .= "PROGRAMME CHANGES AND REASONS | ".$a40.$eol;
$report .= "CARDIAC PHYSIOLOGIST | ".$a44.$eol;
$report .= "NEXT APPOINTMENT | ".$a42.$eol;
// encode data (puts attachment in proper format)
$attachment = chunk_split(base64_encode($report));
///////////HEADERS INFORMATION////////////
// main header (multipart mandatory) message
$headers .= "Content-Type: multipart/mixed; boundary=\"".$separator."\"".$eol.$eol;
$headers .= "Content-Transfer-Encoding: 7bit".$eol;
$headers .= "This is a MIME encoded message.".$eol.$eol;
// message
$headers .= "--".$separator.$eol;
$headers .= "Content-Type: text/html; charset=\"iso-8859-1\"".$eol;
$headers .= "Content-Transfer-Encoding: 8bit".$eol.$eol;
$headers .= $message1.$eol.$eol;
// attachment
$headers .= "--".$separator.$eol;
$headers .= "Content-Type: application/octet-stream; name=\"".$filename."\"".$eol;
$headers .= "Content-Transfer-Encoding: base64".$eol;
$headers .= "Content-Disposition: attachment".$eol.$eol;
$headers .= $attachment.$eol.$eol;
$headers .= "--".$separator."--";
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "localhost"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "newuser"; // Make sure to replace this with your shell enabled user
$mail->Password = "wampp"; // Make sure to use the proper password for your user
$mail->From = "admin@localhost";
$mail->FromName = "Admin";
$mail->AddAddress("recepient@domain.com", "First Last");
$mail->AddCC("recepient@domain.com");
$mail->AddBCC("recepient@domain.com");
$mail->AddReplyTo("admin@localhost", "Admin");
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = $subject;
$mail->MsgHTML($message1);
$mail->AddCustomHeader($headers);
// $mail->AddAttachment($filename, 'Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.ms.word.document.macroEnabled');
if(!$mail->Send()){
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
else {
echo <<<_END
<script>
alert("Email Sent");
document.location='index.html';
</script>
_END;
}
?>
docx の 4 行目と 5 行目をコメント アウトすると、HTML メッセージが受信されず、ファイルもサポートされていない別の Word ファイルに変更されます。
この完全な質問の結論は、必要なデザインまたは持っているテンプレートに従って適切にフォーマットされたDocxファイルが必要であり、保存またはダウンロード ダイアログ ボックスなしで添付ファイルとして送信することです。
これらのヘッダーを使用すると、開いて保存するオプションを含むダイアログ ボックスが表示されます (これも必要ありません)。
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=example.docx');
header('Content-Transfer-Encoding: binary');
私が何を望んでいるのか、皆さんが理解してくれることを願っています。誰かが私に正しい方向性や解決策を教えてくれたら、1000000000000000 よろしくお願いします。