Method of exchanging digital messages from an author to one or more recipients.

learn more… | top users | synonyms (2)

2
votes
0answers
50 views

why cant I use _GET function on tsohost? (working on localhost)

Im a relative php noob but im working through a tutorial and recently had to host it online to use some email functionality. I created an account on tsohost forums but still dont have the privaleges ...
0
votes
0answers
9 views

PHP E-mail forward

I am trying to write a php e-mail forwarding script. I wrote a simple code doing this, reading e-mails from imap and sends them to a specific e-mail address. But the problem is it is not working :) ...
1
vote
1answer
22 views

Where to find all available Java mail properties?

Where do I find a list of all available Java mail properties that I can pass to the Session object? I am only able to find basic properties in the API. Browsing blogs to find some more properties ...
0
votes
0answers
15 views

getting email from Android phone contacts

Please, I've been trying all day to get the email address of all the contact on a phone but somehow, i can't get it to work. Please can someone tell me where am going wrong.. all others work except ...
-1
votes
0answers
19 views

how to find sent mails in qmail queue?

My H.D.D is filled through a local php script, I found the following directory contains large data /var/qmail/queue/mess/ and i can use the following command to delete all files in this directory: ...
0
votes
1answer
21 views

How get header of email using codeigniter?

I have email function in codeigniter like this $this->email->attach('file.txt'); $this->email->from('messi6@barcelona.com', 'leo messi'); ...
0
votes
2answers
25 views

Wordpress function to send email for new and approved comments

I have written a custom Wordpress function to send a user an email when a new comment is posted to there page. I thought my code sent emails only when the comment was approved. But it seems to be ...
0
votes
0answers
30 views

Cloud Foundry registration email not received

I signed up for a Cloud Foundry account, received a welcome email: Thank you for your interest in Cloud Foundry - the industry's first open platform as a service. You are now registered with ...
-1
votes
0answers
16 views

Magento : import customer csv and auto assign password and send notification per store

I want to import a customers csv file, after importing the email notification should be sent to each customer with the auto generated password. Is there any way to do this ? I'm new to magento, so ...
0
votes
1answer
63 views

Solution to Send Bulk Emails in a Short Span Using PHP Application [closed]

I've a authenticated database of one million e-mail IDs. I need to send a single email to all these email IDs. I've a PHP web application using simple PHP mail() function. But i found it is not ...
1
vote
1answer
23 views

No Response from Send() function when using PHPMailer

I am using PHPMailer to send email using a contact form on my web page. I am using the code $msg = $mail->Send(); echo $msg; but nothing is printed out.. Obviously I have all my email/domain ...
0
votes
2answers
33 views

Android ACTION_SEND

i wanna make an action that the android app can send an email, and the email subject and body already fill with the edittext from the android app. here's my code Intent ii = new ...
-1
votes
0answers
13 views

Unable to connect to Microsoft Exchange server in iphone via any API/SDK

How to connect to Microsoft Exchange server as it happens in Mail+/Sparrow(iphone).I am using chilkat and MailCore. Chilkat is connecting to most of the servers like GMAIL (IMPA/POP) etc. and also ...
-1
votes
1answer
10 views

Is it possible to send out an outlook delayed email without keeping the application running? [closed]

I am using outlook 2012 and was wondering if the above is possible. So even though my computer is off, the email should still send.
-1
votes
1answer
23 views

How to find whether particular email id is a valid id or not before sign in that email service provider?

I am creating a windows form where i get inputs for mail id,password,service provider name from the user...i want to validate whether the user entered email id is valid for the service provider ...
-1
votes
1answer
27 views

Facebook E-mail Status updating newline [closed]

I'm using this Facebook e-mail service, that allows you to update your status by sending an e-mail to a secret address and then put the contents in the subject line. With this service, I've created a ...
0
votes
0answers
15 views

Email stuck in Outbox in Outlook 2010

I have run out of options to diagnose this problem, hope someone can help me here: I have an application using Active Messaging (CDO) to send emails via Outlook 2010. Recently there's a problem that ...
0
votes
0answers
10 views

Auto-emailing with telnet

I want to monitor a windows process for which I was a writing a batch script. The script does the following: monitors the process (ok) sends an email when the process is not running (not working) ...
0
votes
3answers
38 views

Listview Content Email

I have a ListView with two TextViews as result.One is result and other is description. My Listview contains 10 rows .The question is that how can I E-mail the content using android default mail ...
-1
votes
0answers
13 views

imap connection issue in oulook 2007, working in other mail clients [closed]

My client is experiencing IMAP issues with their email accounts. I have tested the IMAP accounts in outlook express and thunderbird and they work – connects to the folders and downloads mail with no ...
2
votes
3answers
65 views

PHP Code Error. Can't find my logic mistake

Ok. So this is my code below. I'm trying to follow a tutorial on webtuts about validating email. But my sample is not working out. It is supposed to alert the user that it has entered an invalid ...
0
votes
1answer
24 views

In Android-----How to open html image in mail body?

My aim is to open html file with its image(image link is available in html page). Intent shareIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:")); ...
0
votes
3answers
45 views

How can my app jump to iOS default mailbox?

I wanna set a button inside my app that, if clicked, app can jump to the default mailbox of iOS. I want to do this so users can check & send their mails. Does this function need a private API or ...
0
votes
0answers
39 views

how to access my yahoo or gmail account in outlook (c#)?

I have 3 data files: Outlook data file (is empty) Gmail data file (from my gmail pop3) Yahoo data file (from my yahoo imap) I can access the Outlook data file inbox (which is always empty, I don't ...
1
vote
2answers
43 views

How can one run the PHP mail() function without sending a file to the user?

This is all of the code surrounding the section I'm asking about. if($register == "true") //Registration "checks out" okay { $gooddata['password'] = md5($gooddata['password']); ...
0
votes
1answer
21 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 ...
2
votes
2answers
25 views

Sending an email to myself but letting me reply back to another email

I'm sending an email to myself using a module (nodemailer) on my web application's platform (node.js) from someone using my web app's contact page. Since, I'm sending an email to myself, if I reply to ...
1
vote
1answer
52 views

doesn't send email with gmail smtp through fsockopen()

When I try send email with PHPMailer_v5.1, it works. But when I try make it self, I know that the result is possible to error or email not sent. My problem is the email not sent. this my code: ...
0
votes
4answers
48 views

Execute PHP from HTML form without redirecting to PHP

I have a mail form on my HTML that calls a PHP. When I click Submit, It redirects to the PHP and shows various alerts about the form. I want it not to redirect to the PHP and show alerts on HTML. ...
-1
votes
0answers
48 views

Have a server play a sound when it receives an email [closed]

There's a server sitting in my room, and I would like it to play a sound whenever I receive a specific email (let's just say, for example, the emails that notify me I have a new follower on twitter). ...
0
votes
0answers
8 views

VPS send email list hijacked [closed]

I am using a rented ubuntu VPS with root access for email marketing. It is posible that my email list will be hijacked by the VPS provider in anyway? (smtp logs or something like that) Thanks.
0
votes
0answers
24 views

phpmailer external images don't show up

i'm using phpmailer to send html-templates. unfortunately external images don't show up on some email clients (e.g. thunderbird) (no its not the client. not flagged as spam and images enabled. also ...
2
votes
2answers
44 views

Sitecore Droplink for User Roles

I'm building a custom workflow where all users that are members of a specific role will receive email notifications depending on certain state changes. I've begun fleshing out e-mail templates via ...
0
votes
0answers
6 views

How do I disable AppleMail's testing if smtp server is online?

AppleMail seems to checking if smtp servers are online by default. However, virus scanners/and intrusion detections script check for hosts tying to access SMTP servers. The combination is causing our ...
0
votes
0answers
18 views

Using System.Net.NetworkCredential on external website

I am just looking for best practice really. I am creating a form for an external website, on the form a user enters some standard details: name, email address etc. and on a button click, an e-mail is ...
-1
votes
3answers
61 views

Can we trigger a perl script in unix by sending a mail

I want to know if we can trigger a perl script in unix through a sending a mail. basically the script should check the incoming mail then trigger the perl script. Also can some1 out on setting the ...
1
vote
1answer
20 views

How to attach a flat file into informatica Email?

I want to send a mail to some users after workflow is done. This email should contain 3 xls file or 1 xls file with 3 sheets. The xls file contains a query result -less than 50 rows- which is loaded ...
-3
votes
1answer
28 views

Form values not submitting to php mail

My problem is as follows: I have these inputs: <input type="text" value="" class="span2 check-in-date" id="checkin" value="2012/11/22"/> <input type="text" value="" class="span2 ...
0
votes
1answer
29 views

Can I set the encoding of an e-mail message created by AppleScript?

I have to send a mailing list and want to use Apple Mail for this. I have created a script that reads a UTF8 encoded text file and uses this text to set the contents of the e-mail message. This text ...
-3
votes
0answers
28 views

how to email CSV with PHP [duplicate]

I am trying to email a CSV file with data extracted from a database. I feel like I am very close but still cant get it right. I can get an email to send but I cant get the CSV attachment with it. ...
-1
votes
0answers
22 views

Error in sending email with attachments

errors: Warning: fopen() [function.fopen]: Filename cannot be empty in /home/content/36/11020636/html/career_mail.php on line 129 Warning: fread() expects exactly 2 parameters, 1 given in ...
-1
votes
0answers
40 views

Why isn't this sendmail.php working?

I have a problem with send_mail.php, problem is that it won't send email. Could you help me see what is wrong with my code? Here it is: <?php function isInjected($str) { $injections = ...
0
votes
2answers
21 views

How to remove the divide between table rows in e-mail shot?

I recently mocked up an e-mail marketing (mail chimp) e-mail in Photoshop, and exported it into HTML (using tables and inline styles (unfortunately) so that it appears correctly in all/most e-mail ...
-2
votes
1answer
54 views

my CSV attachment is empty! PHP [duplicate]

Im trying to take data from the database and display it in a CSV file which is both downloadable and emailed to someone. I have managed to get the downloadable file working and it displays all of the ...
1
vote
0answers
35 views

Is it possible to run mvc mailer from a separate project

I'm currently running an MVC website alongside a WebApi and I'm looking into building in the email functionality. I have very lightweight controllers abstracting most of the logic away to a service ...
-1
votes
1answer
36 views

PHP attachment in email is empty

Im trying to take data from the database and display it in a CSV file which is both downloadable and emailed to someone. I have managed to get the downloadable file working and it displays all of the ...
1
vote
0answers
11 views

Opening a user's Apple Mail to make a new outgoing message with pre-populated HTML body

Is there a way to provide a link that opens a users Apple Mail and pre-populates the email with an HTML body? I know this is not really possible with mailto as it's outside the spec of plain/text. ...
0
votes
0answers
8 views

Impossible to send emails to @@melinvest.ru from my server [closed]

I have a VPS with windows server 2008 R2 and Parallels. I have there a domain "xxx.com" when I try to send emails to any account in @melinvest.ru I always recieve the same answer from their server: ...
-1
votes
0answers
6 views

How to configure postfix to throw away all email to one domain and relay all other email? [closed]

I need to set up postfix in a development/test environment to filter e-mails so we don't spam our customers. In our test environments we scrub all our user data so that e-mail addresses are changed ...
0
votes
0answers
21 views

Missing attachement in mail sent through Mime / SMTP Gmail Server (PHP, PEAR)

I am sending an Email from my server through SMTP Gmail using Pear's Mail Mime. However when I add an attachement it simply does not show up. $smtpinfo["host"] = "ssl://smtp.gmail.com"; ...

1 2 3 4 5 321