Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Content-Type text/html
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Friedrich Remmert  
View profile  
 More options Sep 8 2009, 10:54 am
Newsgroups: comp.mail.sendmail
From: Friedrich Remmert <f...@luhe.de>
Date: Tue, 08 Sep 2009 16:54:31 +0200
Local: Tues, Sep 8 2009 10:54 am
Subject: Content-Type text/html
Hi,

I would like to send a html-mail body. How could I set my mail client
(mail/nail) to set this content type for the body (not for an attachment)?

Thank's
fr.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
J.O. Aho  
View profile  
 More options Sep 8 2009, 11:52 am
Newsgroups: comp.mail.sendmail
From: "J.O. Aho" <u...@example.net>
Date: Tue, 08 Sep 2009 17:52:03 +0200
Local: Tues, Sep 8 2009 11:52 am
Subject: Re: Content-Type text/html

Friedrich Remmert wrote:
> I would like to send a html-mail body. How could I set my mail client
> (mail/nail) to set this content type for the body (not for an attachment)?

That depends on your mail client, you should ask the question at a newsgroup
which has something to do with your mail client or one that is generally for
mail clients.

This newsgroup is for questions related to the MTA called sendmail.
For more info see: www.sendmail.org

--

  //Aho


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Friedrich Remmert  
View profile  
 More options Sep 8 2009, 12:41 pm
Newsgroups: comp.mail.sendmail
From: Friedrich Remmert <f...@luhe.de>
Date: Tue, 08 Sep 2009 18:41:53 +0200
Local: Tues, Sep 8 2009 12:41 pm
Subject: Re: Content-Type text/html

J.O. Aho wrote:
> Friedrich Remmert wrote:

>> I would like to send a html-mail body. How could I set my mail client
>> (mail/nail) to set this content type for the body (not for an
>> attachment)?

> That depends on your mail client, you should ask the question at a
> newsgroup which has something to do with your mail client or one that is
> generally for mail clients.

> This newsgroup is for questions related to the MTA called sendmail.
> For more info see: www.sendmail.org

Thank's for the hint. But I could not find such a group.

Is it possible to give sendmail an inputstream with a properly formed mail
body? I mean:

sendmail -s Subject anyone@anydomain < MIME-Version: 1.0
Content-Type: text/html; charset=iso5988-1
Content-Transfer-Encoding: 7bit
From: sender@mydomain
EMPTY-LINE
...Message in HTML...
END-OF-INPUTSTREAM

Thank You!
fr.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David F. Skoll  
View profile  
 More options Sep 8 2009, 11:55 pm
Newsgroups: comp.mail.sendmail
From: "David F. Skoll" <d...@roaringpenguin.com>
Date: Tue, 08 Sep 2009 23:55:25 -0400
Local: Tues, Sep 8 2009 11:55 pm
Subject: Re: Content-Type text/html

Friedrich Remmert wrote:
> Is it possible to give sendmail an inputstream with a properly formed mail
> body? I mean:

Yes, absolutely.

> sendmail -s Subject anyone@anydomain < MIME-Version: 1.0
> Content-Type: text/html; charset=iso5988-1
> Content-Transfer-Encoding: 7bit
> From: sender@mydomain
> EMPTY-LINE
> ...Message in HTML...
> END-OF-INPUTSTREAM

Well, the syntax is a bit off... you want:

sendmail -oi -- any...@anydomain.com <<'EOF'
Subject: Here is some annoying HTML mail
To: <any...@anydomain.com>
From: <some...@somewhere.com>
MIME-Version: 1.0
Content-Type: text/html; charset=iso8859-1
Content-Transfer-Encoding: 7bit

<html>
<head><title>Annoying HTML</title></head>
<body>Isn't it <em>annoying?</em></body>
</html>
EOF

-- David.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »