Tagged Questions
-2
votes
0answers
32 views
Email newsletter sign-up on static web-server [closed]
I have a static web site http://www.nodeclipse.org/ that doesn't have database.
I want to implement newsletter email subscription implemented on this website
(without database, that is I want to ...
-1
votes
0answers
14 views
Which Node.js email module uses proxies? [closed]
I have tried emailjs and nodemailer, but none of them use proxies.
Is there a module out there that uses proxies?
If not, how hard is it to code it in?
-4
votes
0answers
23 views
Email form function and js alerts? [closed]
So i have a site I built with bootstrap. I have a contact form that I want to email me when the customer enters the info. if they dont enter the correct info I would like to have them prompted with a ...
0
votes
0answers
14 views
as3 javascript communication does not work when file sent as an email attachment
I have a html file which interacts with an as3 function to create a text file on client machine. The html file has a flash save button which when clicked prompts the user to save the file on local ...
1
vote
0answers
35 views
How do I send email from my Gmail account in my Node.js script?
app.get('/email', function(req,res){
var emailjs = require('emailjs');
var email_server = emailjs.server.connect({
host: 'smtp.gmail.com',
ssl: true,
tls: true,
...
0
votes
0answers
27 views
Opening Outlook 2010 Email Compose Window with Attachment using Javascript
Folks,
I have come across several similar threads on Stackoverflow, where the same topic was discussed. But, to be frank, I didn't get any proper solution to my problem.
I have a webpage where I am ...
2
votes
1answer
73 views
Drupal 7 sends emails with out attachments
I have a problem with sending mail with attachment in Drupal 7.
I tried usual module, I tried mimemail, I tried Zend Framework (or something like that)... but it just doesn't work. I get an email ...
0
votes
0answers
23 views
Mailing script not working
I found a guide on how to create a sweet contact form, unfortunately it doesn't work.
http://www.hongkiat.com/blog/ajax-html5-css3-contact-form-tutorial/
So this is my form:`
Your ...
1
vote
4answers
49 views
jQuery email has no text/submits twice
I am trying to simply send an email to a hardcoded email address as a function of a report bug button. However, the text I try to input to the php file that sends the email wont transmit through, and ...
0
votes
0answers
31 views
Create and send an e-mail from a form + keep javascript filters
On the contact page, I do have a form that will allow users to send e-mails to the company. To control each field, I had a script to the form and some css effects.
This is working perfectly.
Here ...
0
votes
1answer
21 views
jQuery - keyup and iPad caret positioning
I've had an issue where users are continually adding commas in our email field; to remedy this in the interim I was looking to convert comma input to a period.
Now before anyone says 'commas are ...
0
votes
1answer
32 views
Sencha Touch - email button
I need a mail button in my Android application, that opens a standard email form with filled To, Subject (can be edited) and Message fields. It's kind of a refer-a-friend email. How to make it?
All ...
0
votes
1answer
39 views
Sending email through client side, without opening the email client window [duplicate]
On my client side, whenever, user presses the submit button, I want the email to be sent to a userAdmin. I do not want the user who is clicking the submit button, to be aware of this, & neither ...
1
vote
1answer
50 views
Using JavaScript RegExp to valid email. Regex special characters not working
I've got this JavaScript function:
function emailaddresscheck() {
var emailregex = new ...
-1
votes
0answers
28 views
Detect if an email format is correct without using regex
Need to make sure format of email is correct without using regex.
here's the code:
var emailAddressValid = function(emailAddress){
var lastAtPos = emailAddress.lastIndexOf("@");
var lastDotPos = ...
-4
votes
2answers
72 views
Why is javascript not executed inside email? [closed]
I sent a mail with some javascript to somemail@gmail.com, the html part is working and I am able to see the button. But when i click on the button and try to invoke a function inside I am not able to ...
0
votes
0answers
68 views
Strange hidden script in mail php
There are two problems with my form2mail php.
I used to recieve the form normally but yesterday something new appeared : "bcc" before the actual message. So I guess someone is getting a copy of my ...
-2
votes
0answers
73 views
How to send multiple attachments in email using JavaScript
I have a web page from which i want to send multiple attachments dynamic problem is that it only attaches one not the remaining files.
here is the code
$(document).ready(function(){
...
1
vote
5answers
60 views
Save Email Addresses on Website
I have created a simple website and have a form that asks the user to input their email address to receive future updates from me.
What is the best way to save these emails. I am not anticipating ...
0
votes
1answer
24 views
Sending email using javascript but deleting part of timestamp
Hi I'm sending an email using java script taking the information from a form when it is submitted on a google spreadsheet.
This is my code well a test version only small for fixing problems like this ...
0
votes
1answer
24 views
Newline ignored in mailto:
I am have items added to a 'cart' which is just a div. When I add them I add a <br /> to the end to make things look tidy. When it's done the user can hit a link and the contents of the div is ...
0
votes
1answer
34 views
Javascript Cookie not being created
I have this code referencing a form on my site to create a cookie
<script type="text/javascript">
function storeValues(form)
{
setCookie("signup[email]", form.signup[email].value); ...
0
votes
2answers
254 views
Using HTML 5 / Javascript template to send contact e-mail form
I recently created a simple site for a friend's business using an HTML 5 template. It contained some cutesy Javascript elements too. The website URL is www.michianamemories.com
One of the elements is ...
-1
votes
1answer
26 views
Setting DOCTYPE With Server-Side Javascript
I have a real quick question. I want to set the DOCTYPE for an HTML Page but I need to do it using Server Side Javascript. Every answer I see on this site says "I don't see why you want to do it" but ...
1
vote
1answer
22 views
Incorrect Email validation hints
I'm not a big fan of email validation regexes as I myself have come across a lot of sites that have too strict regexes and as a result have not been able to user my preferred email.
Basically I use ...
0
votes
0answers
36 views
Show confirmation pop up after sending an mail from outlook
I have an requirement that says, I need to send mail through user's default mail program (say outlook) when the user has finished entering the email id and user clicks "send", a popup should show up ...
0
votes
0answers
34 views
Sending emails using javascript [duplicate]
I need to write a script to make a questionary and then email the answers to me.
The first part of the script was easy just a couple of variables and prompt.
But I got stuck in the emailing part.
My ...
1
vote
1answer
215 views
onkeypress Email Validation using ajax js and php
Preface: this will eventually expand to a signup sheet, but I am more concerned with getting one portion completed first.
Now you will not be able to connect to my server, but I do need help, or at ...
0
votes
1answer
75 views
Can I Send an Email using ONLY Javascript Without Having to Click The Send Button on the Email Client?
I created a form in HTML and when the submit button is clicked the onclick event calls the following function:
function ProcessSubmition(){
var stringEmailBody=BuildEmailBody();
var ...
2
votes
1answer
57 views
Can a javascript dropdown in-email like G+ be implemented by anyone, or only Google?
Noticed today this great trinket from Google: in their notification emails upon new G+ followers, the recipient can add someone to a circle directly from a dropdown in the email. (See below).
The ...
1
vote
3answers
109 views
Javascript Email validation that allows a null value
I have this on submit function that checks for the email field to have a properly formatted address. Works fine. However, I want the field to allow a null value as this particular input is optional ...
0
votes
0answers
46 views
Automatic Email on form submitted
I have a script that sends the last edited row in a google spreadsheet.
I have it the script sending the data in a specific format to suit my criteria but i need to find a way so that when someone ...
0
votes
0answers
22 views
How to sync email to web app
I am looking for a way to sync my email to my web app. I would need it to sync both incoming and outgoing email so that they are both consistant with each other. I was looking at IMAP, but I dont ...
0
votes
0answers
31 views
Javascript / MVC Emailing with Multiple Attachments
Using MVC/JavaScript, I'm trying to find a way to generate an email containing a bunch of URL Shortcuts as attachments. Currently, I pass a list of links up to the Controller from JavaScript using ...
2
votes
1answer
34 views
How can I parse out the “somebody wrote…” part of an email text?
If you get a private message from Github, you can reply to it directly via email instead of going directly to the site to reply.
When Github receives your email, it parses the message and inserts it ...
0
votes
0answers
41 views
print page and mail it to me in one button
I have s script that print a page of a website, it's running perfectly..
Now, my issue is, i want the same button to send email to me in the background, attaching the one that is recently cued for ...
0
votes
1answer
100 views
Validation email form not working in IE
I am trying to build a form that will validate a field upon a checkbox being checked. It works fine in all browsers except for IE. Any suggestions on making it work in IE also?
<form ...
0
votes
2answers
95 views
Open email popup on enter key hit on email address
I have email address shown on my screen on which user can click and outlook mail instance get opened (used simple <a mailto:/> ). However, user can also use a tab sequence to come on that email ...
1
vote
2answers
89 views
Getting the thread id in Gmail
I'm looking for a way to figure out how to get the thread id for a particular email on Gmail, just before it is sent OR at the point where the send button is clicked.
Currently, I'm working with ...
0
votes
1answer
138 views
Ajax & PHP email with JSON return
I have a simple contact form. I got the invalid email and fill all the fields error messages correctly, but I don't get the success message. Hence it's sending the email twice without giving any ...
0
votes
1answer
85 views
How do you include custom javascript
I'd like to be able to include custom javascript for the Emails modules in sugarcrm so that I can run some javascript on the email composition page. However that module doesn't seem to load the ...
-5
votes
4answers
233 views
Simple way to send email with javascript and PHP [closed]
I need to be able to fetch an email address from the user and then use php to send them an email with a link.
I know there are some implementations using jquery or AJAX but i have no experience in ...
1
vote
1answer
98 views
Making an Email Form Send Email
I have the following code for an email form from an HTML template. I'd like to make it send email, as the moment I think it doesn't and I need to add some javascript to process the form. Any tips on ...
0
votes
2answers
131 views
email address validation top level domain
Our QA has filed a bug that says top level domain of the email address cannot be of one character.
foo@bar.z
I am having a hard time looking into standards. Can somebody confirm if setting top ...
-3
votes
2answers
383 views
How to send email in html, using JavaScript [closed]
I have been searching the internet for an hour now, and nothing has really come up.
I want to know of a method to send emails using JavaScript/other scripting language, from within a HTML site in ...
-2
votes
1answer
90 views
bypassing email confirmation registration for test [closed]
I am currently working on a new website, installed locally on my osx machine, and which requires email confirmation for user registration, however it does not work on my machine as I do not have any ...
0
votes
1answer
77 views
Google Scripts: Error when sendEmail to bcc list
I am trying to write a script to send an email to a distribution list housed in a google spreadsheet. I am using a test sheet with only 3 email addresses on the list before I move this into a live ...
0
votes
2answers
203 views
Sending an uploaded file through email without saving it first
I am creating an application that allows a user to attach a file, type a message, then an email is sent using the PHP mailer plugin for wordpress. I use javascript to get the file information from ...
0
votes
1answer
96 views
Sending a Canvas Image as a E-Mail Attachment
I want to send a Canvas as a attchment to an email on the click of a button.
I converted the canvas to an image using
var image=canvas.toDataURL();
I would like to attach it in the email client ...
2
votes
2answers
141 views
Change input value with Javascript
The title seems easy, but I need help.
I have a form with a field input "email" of which value is null until the user fills it up. Okay, on click of the submit button, I call the function validate() ...



