Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Attach image to email with ssmtp or mailx
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Networking & Security
View previous topic :: View next topic  
Author Message
d4mo
Guru
Guru


Joined: 27 Jun 2005
Posts: 430

PostPosted: Wed Dec 01, 2010 12:09 am    Post subject: Attach image to email with ssmtp or mailx Reply with quote

What is the best way to do this?

I saw some stuff on uuencode and mimencode. But I want the image to be visible in a gmail account.
Back to top
View user's profile Send private message
py-ro
Veteran
Veteran


Joined: 24 Sep 2002
Posts: 1734
Location: Velbert

PostPosted: Wed Dec 01, 2010 1:22 pm    Post subject: Reply with quote

This is how attachments are encoded, they will be visible.

Py
Back to top
View user's profile Send private message
d4mo
Guru
Guru


Joined: 27 Jun 2005
Posts: 430

PostPosted: Wed Dec 01, 2010 2:14 pm    Post subject: Reply with quote

Maybe I am doing it wrong then. Because when I do it, call I get is a bunch of text in the email and it's not decoded.

Any advice?
Back to top
View user's profile Send private message
toralf
Developer
Developer


Joined: 01 Feb 2004
Posts: 3943
Location: Hamburg

PostPosted: Wed Dec 01, 2010 2:25 pm    Post subject: Reply with quote

d4mo wrote:
Any advice?
This works for me:
Code:
tfoerste@n22 ~/workspace $ cat misc/mymailx.sh
fn_sendmail()
{
        echo "From: <noreply@nowhere> Do not reply to this address
To: tfoerste@localhost
Reply-To: user@other.domain
Subject: test
X-MSMail-Priority: High
Importance: 1
Mime-Version: 1.0
Content-Type: text/plain

 This is a test email ...

 Rgds
"

        [[ -f $ATTACH ]] && uuencode $ATTACH $ATTACH
}

ATTACH=$1

fn_sendmail | /usr/sbin/sendmail -t -O DeliveryMode=i -R hdrs -n
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Networking & Security All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum