소스 검색

Added readme.md file

master
Nikola Ignjatovic 5 년 전
부모
커밋
012d129801
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      README.md

+ 3
- 3
README.md 파일 보기

@@ -41,7 +41,7 @@ For email sending, needed to make an instance of PHPMailer and use method *send*

Before that, needed to setup email:

``` $mail = new PHPMailer(); //make instance of PHPMailer
$mail = new PHPMailer(); //make instance of PHPMailer

$mail->IsSMTP(); // telling the class to use SMTP

@@ -82,11 +82,11 @@ For email sending, needed to make an instance of PHPMailer and use method *send*
$mail->IsHtml(true); //enable html message instead of text


$mail->send(); //send email ```
$mail->send(); //send email



When 'resume-file' is sent using POST method, it can be found in $_FILES array, but other parameters can be found in $_POST array
When 'resume-file' is sent using POST method, it can be found in FILES array, but other parameters can be found in POST array

When input (type file is used) in html form, need to add enctype="multipart/form-data" and setup:


Loading…
취소
저장