Jixor
08-31-2001, 10:00 PM
how do i block the return address when sending an email?
| //flex table opened by JP
Click to See Complete Forum and Search --> : block the "from" in emails Jixor 08-31-2001, 10:00 PM how do i block the return address when sending an email? vass0922 09-01-2001, 07:50 AM There are applications to do this, usually something regarding SPAM! SPAM sucks! lol smokin1 09-01-2001, 09:54 AM Your IP will still show, but just enter whatever you like in the email address box in your mail program setup. http://www.sysopt.com/forum/smile.gif DVNT1 09-01-2001, 06:36 PM Send your mail manually (normally by telnet to your email server's port 25) and you can put in any return email address you want. Example... telneting to an SMTP server (port 25) at Yale... 220 bulldog.CS.YALE.EDU ESMTP Sendmail 8.7.1/res.host.uucp.cf-4.1 ready at Sat, 1 Sept 2001 11:37:20 -0400 (EDT) (2) <#2>HELO fake.com \\ Identify yourself - better be fake (3) <#3>250 bulldog.CS.YALE.EDU Hello your.computer.name [xxx.your.ip.xxx], pleased to meet you (4) <#4>MAIL FROM: spirou@fake.com \\ say who the mail is from (5) <#5>250 spirou@fake.com... Sender ok (6) <#6>RCPT TO: me@Yale.EDU \\ say who the mail is for (7) <#7>250 Recipient ok (8) <#8>DATA \\ Command to start with the message (9) <#9>354 Enter mail, end with "." on a line by itself (10) <#10>Now you type your message - to tell Sendmail you are finished type a "." on a single line at the end. . (11) <#11>250 LAA00522 Message accepted for delivery (12) <#12>QUIT \\ when you are finished you say Quit (13) <#13>Connection Closed by Remote Host! \\ The remote server will then close the connection. SysOpt.com
Copyright Internet.com Inc. All Rights Reserved. |