how do i add yahoo contact names into my email mailing list?

Filed under: email list mailing — admin @ 8:55 am

HI,

i have added some friends into my contact list via answer yahoo. how do i communicate to some of them? can i add them into facebook or my normal mailing list or im them?

thanks.

Several ways to do this.
when they send you an email,at the top of it in the header
click on Add to Contacts.
Or send them an email and when you click on send you will
beasked if you wish to add them.
Or,from your mail page hover on contacts on the left and
click on Add,this will take you to your contacts page where
you can add a friend manually.
Good luck.

Jes :)

powered by Yahoo Answers

Filed under: email list mailing — admin @ 12:53 pm

Duration : 0:0:0

(more…)

Filed under: email list mailing — admin @ 8:41 am

Duration : 0:0:0

(more…)

Can I make a email list form where the input data automatically gets added to the outgoing email list?

Filed under: email list mailing — admin @ 10:46 pm

I’m not sure if I’m wording this right. But I want to add an input field on my website to join a mailing list. I would imagine that the email address they input would then automatically get added to an outgoing email list. I’ve been using formmail and CGI to recieve data such as contact info or invoices to my email. Now I’d like to know if and how the mailing list is possible. Can anyone help or point me to a website that would have that info? Thank you very much!!

This is pretty simplistic, but it’s worked fine for mailing lists of a thousand names or so. I have a form that collects the visitor’s name and email address, and calls a simple Perl script (formmail is Perl, isn’t it?). I keep the email list as a DBM file, keyed by email address, and add the visitor thusly:
dbmopen(%MAILLIST, "$maillist", 0644) or die "cant open mail list: $!";
$MAILLIST{$formdata{’email’}} = $formdata{’name’};
dbmclose %MAILLIST;

I also send the visitor a confirming email with an opt-out link in the form ..remove.cgi?email=you@yours.net

powered by Yahoo Answers

Filed under: email list mailing — admin @ 10:19 pm

Duration : 0:0:0

(more…)

How to erase no more wanted email IDs from the stored place in my yahoo mailing list. ?

Filed under: email list mailing — admin @ 5:33 am

Whenever I send mails the address is stored in my yahoo mailing list.Some mails which I sent is deleted by me as I do not wish to contact them now.However their address also I want to delete from the stored place.HOW TO DO THAT ?

Click on the Contacts tab to open your address book.
Check the boxes next to the names you wish to remove.
Go to the top of the list and click the Delete button.

powered by Yahoo Answers

Filed under: email list mailing — admin @ 2:15 pm

Duration : 0:0:0

(more…)

Filed under: email list mailing — admin @ 12:44 am

Duration : 0:0:0

(more…)

Website mailing list problem- takes me to an email client like Outlook?

Filed under: email list mailing — admin @ 7:57 pm

My friend site is trying to log a mailing list, but when people put in the name and email it opens up a media client.

Is there something wrong with the code:
<td colspan="3" rowspan="3"><form action="MAILTO:email@email.com" method="post" enctype="text/plain">

<h4><span class="style3">name:</span><br />
<input type="text" name="name" value="yourname" />

<br />
<span class="style3">e-mail:</span><br />
<input type="text" name="mail" value="yourmail" />

<br />
<br />
<input type="submit" value="Send">

It is not clear to me what you want to achieve, but a form action Mailto invokes the browser to look for the default email program, start it up and open up a new email to email@email.com. This is expected behaviour

If you want people to sign up to be included in a mailing list, you need to make a small database in which all subscribers are included and do a add record to add a new subscriber.

powered by Yahoo Answers

Filed under: email list mailing — admin @ 5:41 am

Duration : 0:0:0

(more…)