![]() |
|
|||||||
| Chit Chat Public Talk about any thing you want! This forum is public. |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
#1
|
||||
|
||||
|
ezmlm program
Hello,
Does anyone know how to control the messages from ezmlm program of the hsphere cpanel? It is in English while i want to make them in Greek. Still is there anyway for me to add a link or a form on my website for visitors to add themselves automaticaly on the mailling list? Thank you. |
|
#2
|
||||
|
||||
|
I believe you are "stuck" with english on the mailing list generated verbiage.
As far as a form. Here's one I have in my knowledge base for my customers and I've used on a Windows server: The following is a two part script that will allow you to do it on a windows server. The following would be the contents of a form in an html page. Adjust to your site: <form method=POST action="subscribe.asp" target="_top"> <INPUT TYPE="HIDDEN" NAME="mail_to" VALUE="listname-subscribe@yourdomain.com"> <INPUT TYPE="HIDDEN" NAME="mail_subject" VALUE="Subscribe"> <INPUT TYPE="HIDDEN" NAME="mail_redirect" VALUE="http://www.yourdomain.com/thanksforsubscribing.htm"> <INPUT TYPE="HIDDEN" NAME="mail_send" VALUE="y"> <TABLE BORDER=0 cellpadding=2 cellspacing=0 width="350"> <INPUT TYPE="TEXT" NAME="mail_from" SIZE="30" CLASS="shadeform"> <B>E-Mail</B><BR> <br> <br> <input type="submit" value="Submit Query" onmouseover="this.className='submitbuttonon'" onmouseout="this.className='submitbutton'" class="submitbutton"><br> </FORM> ++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++ Take the following code and paste it into a new page called subscribe.asp Adjust for your domain. <% 'The hidden variable called "mail_send" must be set to "y" for the mail to send IF Request.Form("mail_send") = "y" THEN IF form_from = "" THEN form_from = "abuse@yourdomain.com" IF form_to = "" THEN form_to = "listname-subscribe@yourdomain.com" IF form_subject = "" THEN form_subject = "Subscribe" IF form_redirect = "" THEN form_redirect = "http://www.yourdomain.com/thanksforsubscribing.htm" '************************************************* ****** 'Get all form elements and structure the e-mail '************************************************* ****** FOR x = 1 TO Request.Form.Count IF Request.Form.Key(x) = "mail_from" OR Request.Form.Key(x) = "mail_to" OR Request.Form.Key(x) = "mail_cc" OR Request.Form.Key(x) = "mail_bcc" OR Request.Form.Key(x) = "mail_subject" OR Request.Form.Key(x) = "mail_importance" OR Request.Form.Key(x) = "mail_redirect" OR Request.Form.Key(x) = "mail_send" OR Request.Form.Key(x) = "Submit" THEN form_variables = form_variables ELSE form_variables = form_variables & Request.Form.Key(x) & ": " & vbcrlf & Request.Form.Item(x) & vbcrlf & vbcrlf END IF NEXT DIM body_text body_text = body_text & form_variables body_text = body_text & "Sent from: " & vbcrlf & Request.ServerVariables("HTTP_REFERER") & vbcrlf & vbcrlf '************************************************* ****** 'Get values from hidden fields for sending the mail '************************************************* ****** SET objMail = Server.CreateObject("CDONTS.NewMail") objMail.BodyFormat = 1 objMail.MailFormat = 1 objMail.From = form_from objMail.To = form_to objMail.CC = form_cc objMail.BCC = form_bcc objMail.Subject = form_subject objMail.Importance = form_importance objMail.Body = body_text objMail.Send 'This line actually sends the e-mail SET objMail = NOTHING '************************************************* ****** 'Redirect to thank you page or write thank you '************************************************* ****** IF form_redirect = "" THEN Response.Write("Thank You. Mail Sent.") ELSE Response.Redirect(form_redirect) END IF '************************************************* ****** 'If form was submitted then show what is below "END IF" '************************************************* ****** END IF '************************************************* ****** 'There is a sample Feedback Form below to start you off. 'That's it. Hope you benefit from it. Happy Mailing! '************************************************* ****** %>
__________________
Chris Get over 45 H-Sphere Flash Tutorials customized with your hosting company logo for just $75.00. H-Sphere Demos RapidSSL Certificates - $12.00 - $14.95 Not enough time? Other interests? I'll buy your hosting business or clients. Contact me with details. |
|
#3
|
||||
|
||||
|
well.. this will send an automatic message to users with lots of stuff i dodnt want to send to users (as a reply...) and still in english!
anything else i could do? |
|
#4
|
||||||||||||
|
||||||||||||
|
wow, thats complicated, all you need is a simple form sending to the list email. here is a 2 page form using jmail. real real basic.
form-------------------called subscribe.htm Code:
new page--------------called subscribed.asp Code:
![]()
__________________
goodbye idevaffiliate, you can kiss my @$* with your poor support and broken script, I am now using post affiliate pro 3 Last edited by generic : 10-18-2005 at 10:08 AM. |
|
#5
|
|||||||||||
|
|||||||||||
|
Thanks for posting those forms. When I started with hsphere I couldn't find a good form and found the program of little use without it.
|
|
#6
|
||||
|
||||
|
thank yo all..
i still have questions thought.. ![]() I have set as moderator an email i use but still notmatter which mail i use and send to newsletter@mydomain.com it will send the mail to the whole list!!!! How can i stop that??? I dodnt want anyone to able to send anything to my list. Does anyone know a page that i could find some tutotrials on how to use this mailing list throgh hsphere? Thank you. |
|
#7
|
||||
|
||||
|
How can I moderate all posts to a mailing list? Even from members.
-------------------------------------------------------------------------------- The setting are not real clear but make sure the following three options are selected: Message Moderation AND Others not rejected. For moderated lists, all posts are forwarded to moderators. The switch affects only moderated lists. AND Do not restrict posts based on SENDER address
__________________
Chris Get over 45 H-Sphere Flash Tutorials customized with your hosting company logo for just $75.00. H-Sphere Demos RapidSSL Certificates - $12.00 - $14.95 Not enough time? Other interests? I'll buy your hosting business or clients. Contact me with details. |
|
#8
|
||||
|
||||
|
Quote:
I have done all that and even i get rejected from sending mails to the list!! why so? what do i have to set? thank you |
|
#9
|
||||
|
||||
|
Do you have the email address you're using to send messages setup as a moderator and list owner? You should get a message to moderate your own post at that point. Approve the post by replying to the email sent by the system and the message will go to the list.
Works for me and all my customers . . .
__________________
Chris Get over 45 H-Sphere Flash Tutorials customized with your hosting company logo for just $75.00. H-Sphere Demos RapidSSL Certificates - $12.00 - $14.95 Not enough time? Other interests? I'll buy your hosting business or clients. Contact me with details. |
|
#10
|
||||
|
||||
|
I have this customer who wants to use the mailing list of hsphere panel as an everyday newsletter tool.
He has over 1500 cliients and wants to be sending mail to them everyday. (text plain) How much do you think the bandwith will grow every month with such trafic? Thank you. |
|
#11
|
||||||||||||
|
||||||||||||
|
Quote:
![]() 1500 plain text messages should be nothing. about 5KB for a simple plain text message 5x1500 = 7500KB = 7MB
__________________
goodbye idevaffiliate, you can kiss my @$* with your poor support and broken script, I am now using post affiliate pro 3 Last edited by generic : 10-19-2005 at 04:59 PM. |
|
#12
|
||||||||||||
|
||||||||||||
|
Why would someone want to send a newsletter everyday. Seems like once a week would be enough. Alerts are one thing.
|
|
#13
|
|||||||||||
|
|||||||||||
|
Did you try Psoft http://www.psoft.net/HSdocumentation...ing_lists.html and here
http://www.ezmlm.org/faq/index.html Καλή τύχη Αντώνης |
|
#14
|
||||
|
||||
|
i did.. and did work..
it seems likes sometimes we should ready the whole mail ![]() i thank you.. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Configuring EZMLM mailing lists | sobocinski | Chit Chat Public | 0 | 10-28-2004 01:31 AM |
| ezmlm subscription: http://www.zpfe.com/qmail/ml-sub/README | govereeter | Chit Chat Public | 0 | 11-19-2003 10:58 AM |
| ezmlm warning | cjmelhorn | Chit Chat Public | 3 | 11-06-2003 01:32 AM |