Sending HTML mail using a shell script

前端 未结 13 1493
死守一世寂寞
死守一世寂寞 2020-11-28 03:46

How can I send an HTML email using a shell script?

13条回答
  •  不知归路
    2020-11-28 04:20

    First you need to compose the message. The bare minimum is composed of these two headers:

    MIME-Version: 1.0
    Content-Type: text/html
    

    ... and the appropriate message body:

    
    
    
    
    
    
    

    Hello, world!

    Once you have it, you can pass the appropriate information to the mail command:

    body = '...'
    
    echo $body | mail \
    -a "From: me@example.com" \
    -a "MIME-Version: 1.0" \
    -a "Content-Type: text/html" \
    -s "This is the subject" \
    you@example.com
    

    This is an oversimplified example, since you also need to take care of charsets, encodings, maximum line length... But this is basically the idea.

    Alternatively, you can write your script in Perl or PHP rather than plain shell.

    Update

    A shell script is basically a text file with Unix line endings that starts with a line called shebang that tells the shell what interpreter it must pass the file to, follow some commands in the language the interpreter understands and has execution permission (in Unix that's a file attribute). E.g., let's say you save the following as hello-world:

    #!/bin/sh
    
    echo Hello, world!
    

    Then you assign execution permission:

    chmod +x hello-world
    

    And you can finally run it:

    ./hello-world
    

    Whatever, this is kind of unrelated to the original question. You should get familiar with basic shell scripting before doing advanced tasks with it. Here you are a couple of links about bash, a popular shell:

    http://www.gnu.org/software/bash/manual/html_node/index.html

    http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html

提交回复
热议问题