Açık otomatik oynamak için gereken bir midi dosyası ile HTML e-posta gönderme

0 Cevap php

Ben bir html dosyasını okur PHP Mailer kullanarak ve HTML dosyası içinde bir midi dosyası gömme bir HTML e-posta yolluyorum, aşağıdaki gerçekleştirmek için çalışıyorum, ve daha sonra e-posta gönderir ve daha sonra midi dosyası otomatik olarak oynamaya başlar ben e-posta görüntülemek için Evolution kullanıyorum, çalışmak için görünmüyor beri e-posta açıldıktan sonra, bu, mümkün değildir.

Benim kod gibi görünüyor,

HTML DOSYASI "benim tarayıcıda bu açarsanız e-posta değil oynuyor"

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
    <title>Template</title>
</head>
<body>

    <h1>Song is playing</h1>
    <embed src="http://test.mydomain.co.za/song.mid" autostart="true" loop="true" hidden="true" />
</body>
</html>

PHP Mailer kodu

    $email = $_GET['email'];

    //Including the PHP mailer class
    require_once 'class.phpmailer.php';

    $mail = new PHPMailer(true); //defaults to using php "mail()"; the true param means it will throw exceptions on errors, which we need to catch

    try {
      $mail->AddAddress($email);
      $mail->SetFrom('webmaster@mydomain.co.za', 'Webmaster');
      $mail->AddReplyTo('webmaster@mydomain.co.za', 'Webmaster');
      $mail->Subject = 'PHPMailer Test Subject via mail(), advanced';

      $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically

      $mail->MsgHTML(file_get_contents('template.html'));
      $mail->Send();
      echo "Message Sent OK</p>\n";
     }catch (phpmailerException $e) {
       echo $e->errorMessage(); //Pretty error messages from PHPMailer
     } catch (Exception $e) {
      echo $e->getMessage(); //Boring error messages from anything else!
    }
?>

Bu mümkünse mi? Ve nasıl?

0 Cevap