Kod Ateşleyici ->

3 Cevap php

Nasıl e-posta> takmak işlevini kullanabilirim?

I e-posta> mesage boş (posta gövdesindeki) geldi eklemek için kodu koymak ve hiçbir takmak olduğunda ben, ne nedir cos bilemiyorum.

Ben bu kod satırı kaldırırsanız, her şey normale gelmek ..

teşekkür ederim

benim denetleyicisi (sendmail.php)

<?php

 class Sendmail extends Controller {

      function __construct() {
           parent::Controller();
           $this->load->library('email');
           $this->load->helper('url');
           $this->load->helper('form');
           $this->load->library('validation');
      }

      function index() {

           $info = array (
                'nome'  => $this->input->post('nome'),
                'mail'  => $this->input->post('email'),
                'motivo'    => $this->input->post('motivo'),
                'mensagem'  => $this->input->post('mensagem'),
                'anexo' => $this->input->post('upload'),
           );

           $this->load->library('email');
           $this->email->set_newline('\r\n');

           $this->email->clear();
           $this->email->from($info['mail'], $info['nome']);
           $this->email->to('davidslv@gmail.com');
     /* $this->email->cc(''); # não é preciso */
           $this->email->subject($info['motivo']);
           $this->email->message($info['mensagem']);
           $this->email->attach($info['anexo']);

           if ($this->email->send() ) {
                echo 'sent';
           }

           else {
            $this->load->view('formulario');
    # show_error( $this->email->print_debugger() );
           }

      }

 }
?>

benim görüşüm (formulario.php)

    <?php
    echo form_open_multipart('davidslv/index.php/sendmail');
?>
          <label for="nome">nome</label>
          <input type="text" name="nome" id="nome" required />

          <label for="email">email</label>
          <input type="text" name="email" id="email" required />

          <label for="assunto">assunto</label>
          <select name="motivo">
               <option value="motivo1">motivo1</option>
               <option value="motivo2">motivo2</option>
               <option value="motivo3">motivo3</option>
          </select>

          <p> <label for="mensagem">mensagem</label>
          <textarea name="mensagem" id="mensagem" rows="8" cols="30" required></textarea>
          </p>

          <label for="upload">documento</label>
          <input type="file" id="upload" name="upload" size="18"/>
          <input type="submit" id="enviar" name="enviar" value="Enviar!" />

     </form>

3 Cevap

Doğrudan bir e-postaya formun yükleme alanında bir dosya eklemek olamaz. Yalnızca sunucudan e-posta dosya ekleyebilir, böylece GA kütüphane yüklemek ile formdan dosya yüklemek gerekir: $ this-> Upload-> do_upload () sunucuya bazı dizine. yükleme kütüphane dosya türleri yükleme başarılı olursa, do_upload fonksiyon dosya nerede depolandığı hakkında geniş veri döndürür vb izin verildiği, yapılandırılması gerekir. Eğer e-posta için bu dosyayı eklemek için diziden 'tam_yol' dizin kullanabilirsiniz. sonra posta gönderebilirsiniz. bundan sonra sizin sunucudan dosyayı silebilirsiniz. İşte size yardımcı olabilecek bazı kod parçaları vardır.

$this->load->library('upload');

if($_FILES['upload']['size'] > 0) { // upload is the name of the file field in the form

$aConfig['upload_path']      = '/someUploadDir/';
$aConfig['allowed_types']    = 'doc|docx|pdf|jpg|png';
$aConfig['max_size']     = '3000';
$aConfig['max_width']        = '1280';
$aConfig['max_height']       = '1024';

$this->upload->initialize($aConfig);

  if($this->upload->do_upload('upload'))
  {
    $ret = $this->upload->data();
  } else {
    ...
  }

  $pathToUploadedFile = $ret['full_path'];
  $this->email->attach($pathToUploadedFile);
  ...
  $this->email->send();
  ...
}
...

Bu yardımcı oldu umuyoruz ...

$ This-> e-posta> attach ()

Enables you to send an attachment. Put the file path/name in the first parameter. Note: Use a file path, not a URL. For multiple attachments use the function multiple times. For example:

$this->email->attach('/path/to/photo1.jpg');
$this->email->attach('/path/to/photo2.jpg');
$this->email->attach('/path/to/photo3.jpg');

$this->email->send();

Codeigniter Email Class

Bu Kesinlikle doğru kod deneyin Lütfen olduğunu

$config['upload_path'] = './uploads';
$config['allowed_types'] = 'gif|jpg|jpeg|png|txt|php|pdf';
$config['max_size']         = '9000';
$config['encrypt_name']     = true;

$image_data = $this->upload->data();
$fname=$image_data[file_name];
$fpath=$image_data[file_path].$fname;

$this->email->attach($fpath);