We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
boj_man
3 years agoHelpful | Level 6
Can I use an email forwarded for 'Email to Dropbox' feature for attachments?
I've enabled the email to dropbox feature and can receive emails to long email address supplied. I've tried setting up a shorter email on my custom domain to auto forward to the long address but it...
- 3 years agoIt can’t be done. I had got in contact with their advanced support team and below is the response I got:
Hello there,
Thanks for contacting Dropbox Support! My name is Iliana, and I am an Advanced Support Specialist. I will be assisting you further with this matter.
I understand you are trying to redirect emails to the "Email to Dropbox" email address. At this time, it is not possible to set up auto-forwarding or any email redirect because it requires a confirmation code sent to the "Email to Dropbox" address behind the scenes, and this code can not be received when not sent direct to the Dropbox-generated email. At this time, the Dropbox-generated email address is the only one that can be used to upload to Dropbox. The confirmation code is not something that you will see on your end.
bpy
Explorer | Level 4
Hello,
I have the exact same question about forwarding.
I have an email redirection set from `archive@mydomain.com` to `my.random.generated.address@addtodropbox.com`.
I never get any document in my Email Attachement folder when sending to the `achive@mydomain.com`
boj_man
3 years agoHelpful | Level 6
It can’t be done. I had got in contact with their advanced support team and below is the response I got:
Hello there,
Thanks for contacting Dropbox Support! My name is Iliana, and I am an Advanced Support Specialist. I will be assisting you further with this matter.
I understand you are trying to redirect emails to the "Email to Dropbox" email address. At this time, it is not possible to set up auto-forwarding or any email redirect because it requires a confirmation code sent to the "Email to Dropbox" address behind the scenes, and this code can not be received when not sent direct to the Dropbox-generated email. At this time, the Dropbox-generated email address is the only one that can be used to upload to Dropbox. The confirmation code is not something that you will see on your end.
Hello there,
Thanks for contacting Dropbox Support! My name is Iliana, and I am an Advanced Support Specialist. I will be assisting you further with this matter.
I understand you are trying to redirect emails to the "Email to Dropbox" email address. At this time, it is not possible to set up auto-forwarding or any email redirect because it requires a confirmation code sent to the "Email to Dropbox" address behind the scenes, and this code can not be received when not sent direct to the Dropbox-generated email. At this time, the Dropbox-generated email address is the only one that can be used to upload to Dropbox. The confirmation code is not something that you will see on your end.
- bpy3 years agoExplorer | Level 4
Hello @boj_man
Thank you for your answer. I appreciate.
That make it clear to me. I'll sort it out in another wat.
- washtub93012 months agoNew member | Level 2
Email to Dropbox is a really good feature, but the lack of will from Dropbox's side to solve the auto-forwarding code really hampers it and makes it not so useful.
Another additional request would be to be able to create multiple email addresses, each one pointing to a specific folder.
In the meantime, you can use this Google Script code to automate without requiring verification:
function forwardEmails() { // Set the labels to check var labelsToCheck = ["Bills/invoices", "Any other label you want"]; // Set the forwarding email address var forwardAddress = "your.unique.address@addtodropbox.com"; // Build the search query var searchQuery = 'is:unread '; for (var i = 0; i < labelsToCheck.length; i++) { if (i > 0) { searchQuery += ' OR '; } searchQuery += 'label:' + labelsToCheck[i]; } // Get the Gmail threads with the specified labels var threads = GmailApp.search(searchQuery); // Loop through each thread for (var i = 0; i < threads.length; i++) { var thread = threads[i]; console.log(thread.getLabels()) // Get the first message in the thread var message = thread.getMessages()[0]; // Forward the message message.forward(forwardAddress); // Mark the message as read (optional) message.markRead(); } }
About Create, upload, and share
Find help to solve issues with creating, uploading, and sharing files and folders in Dropbox. Get support and advice from the Dropbox Community.
Need more support
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!